(s string, v ...any)
| 859 | } |
| 860 | |
| 861 | func warnf(s string, v ...any) { |
| 862 | if Logf != nil { |
| 863 | pushstate(s) |
| 864 | Logf("warn: "+strings.Join(logctx, ": "), v...) |
| 865 | popstate() |
| 866 | } |
| 867 | } |
| 868 | |
| 869 | var logctx []string |
| 870 |
no test coverage detected
searching dependent graphs…