(s string, a ...interface{})
| 132 | } |
| 133 | } |
| 134 | func Info(s string, a ...interface{}) { |
| 135 | if outputLevel >= 1 { |
| 136 | fmt.Printf(s, a...) |
| 137 | } |
| 138 | } |
| 139 | func Debug(s string, a ...interface{}) { |
| 140 | if outputLevel >= 2 { |
| 141 | fmt.Printf(s, a...) |
no test coverage detected
searching dependent graphs…