(name string, format string, args ...interface{})
| 77 | } |
| 78 | |
| 79 | func LogInfo(name string, format string, args ...interface{}) { |
| 80 | post_log(INFO, false, name, format, args...) |
| 81 | } |
| 82 | |
| 83 | func LogWarning(name string, format string, args ...interface{}) { |
| 84 | post_log(WARNING, true, name, format, args...) |
nothing calls this directly
no test coverage detected
searching dependent graphs…