(format string, a ...interface{})
| 133 | } |
| 134 | |
| 135 | func Debug(format string, a ...interface{}) { |
| 136 | gLogger.doPrintf(debugLevel, printDebugLevel, format, a...) |
| 137 | } |
| 138 | |
| 139 | func Release(format string, a ...interface{}) { |
| 140 | gLogger.doPrintf(releaseLevel, printReleaseLevel, format, a...) |