Commit 817650aa authored by astaxie's avatar astaxie

keep the short name for logs

parent ba1232df
...@@ -298,21 +298,33 @@ func (bl *BeeLogger) Debug(format string, v ...interface{}) { ...@@ -298,21 +298,33 @@ func (bl *BeeLogger) Debug(format string, v ...interface{}) {
// //
// Deprecated: compatibility alias for Warning(), Will be removed in 1.5.0. // Deprecated: compatibility alias for Warning(), Will be removed in 1.5.0.
func (bl *BeeLogger) Warn(format string, v ...interface{}) { func (bl *BeeLogger) Warn(format string, v ...interface{}) {
bl.Warning(format, v...) if LevelWarning > bl.level {
return
}
msg := fmt.Sprintf("[W] "+format, v...)
bl.writerMsg(LevelWarning, msg)
} }
// Log INFO level message. // Log INFO level message.
// //
// Deprecated: compatibility alias for Informational(), Will be removed in 1.5.0. // Deprecated: compatibility alias for Informational(), Will be removed in 1.5.0.
func (bl *BeeLogger) Info(format string, v ...interface{}) { func (bl *BeeLogger) Info(format string, v ...interface{}) {
bl.Informational(format, v...) if LevelInformational > bl.level {
return
}
msg := fmt.Sprintf("[I] "+format, v...)
bl.writerMsg(LevelInformational, msg)
} }
// Log TRACE level message. // Log TRACE level message.
// //
// Deprecated: compatibility alias for Debug(), Will be removed in 1.5.0. // Deprecated: compatibility alias for Debug(), Will be removed in 1.5.0.
func (bl *BeeLogger) Trace(format string, v ...interface{}) { func (bl *BeeLogger) Trace(format string, v ...interface{}) {
bl.Debug(format, v...) if LevelDebug > bl.level {
return
}
msg := fmt.Sprintf("[D] "+format, v...)
bl.writerMsg(LevelDebug, msg)
} }
// flush all chan data. // flush all chan data.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment