(name string, format string, args ...interface{})
| 81 | } |
| 82 | |
| 83 | func LogWarning(name string, format string, args ...interface{}) { |
| 84 | post_log(WARNING, true, name, format, args...) |
| 85 | } |
| 86 | |
| 87 | func LogError(name string, format string, args ...interface{}) { |
| 88 | post_log(ERROR, true, name, format, args...) |
nothing calls this directly
no test coverage detected
searching dependent graphs…