Try to refine the panic things.

This commit is contained in:
zicla
2018-11-30 17:37:52 +08:00
parent 6485e3b48e
commit b55a993b35
10 changed files with 84 additions and 90 deletions

View File

@ -32,11 +32,11 @@ func (this *Logger) Debug(format string, v ...interface{}) {
}
func (this *Logger) Info(format string, v ...interface{}) {
this.log("[info]", format, v...)
this.log("[info ]", format, v...)
}
func (this *Logger) Warn(format string, v ...interface{}) {
this.log("[warn]", format, v...)
this.log("[warn ]", format, v...)
}
func (this *Logger) Error(format string, v ...interface{}) {