(name string, format string, args ...interface{})
| 73 | } |
| 74 | |
| 75 | func LogDebug(name string, format string, args ...interface{}) { |
| 76 | post_log(DEBUG, true, name, format, args...) |
| 77 | } |
| 78 | |
| 79 | func LogInfo(name string, format string, args ...interface{}) { |
| 80 | post_log(INFO, false, name, format, args...) |
nothing calls this directly
no test coverage detected
searching dependent graphs…