You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

150 lines
2.9 KiB
Go

package log
7 years ago
// Default is a default Logger instance
var Default = New()
7 years ago
// Indicate whether output debug message
func IsDebugEnabled() bool {
return Default.IsDebugEnabled()
}
7 years ago
// Indicate whether output info message
func IsInfoEnabled() bool {
return Default.IsInfoEnabled()
}
7 years ago
// Indicate whether output info message
func IsPrintEnabled() bool {
return Default.IsPrintEnabled()
}
7 years ago
// Indicate whether output warning message
func IsWarnEnabled() bool {
return Default.IsWarnEnabled()
}
7 years ago
// Indicate whether output error message
func IsErrorEnabled() bool {
return Default.IsErrorEnabled()
}
7 years ago
// Indicate whether output panic message
func IsPanicEnabled() bool {
return Default.IsPanicEnabled()
}
7 years ago
// Indicate whether output fatal message
func IsFatalEnabled() bool {
return Default.IsFatalEnabled()
}
7 years ago
// Indicate whether output is off
func IsDisabled() bool {
return Default.IsDisabled()
}
7 years ago
// Output a debug message
func Debug(obj ...interface{}) {
Default.Debug(obj...)
}
7 years ago
// Output an info message
func Info(obj ...interface{}) {
Default.Info(obj...)
}
7 years ago
// Output an info message
func Print(obj ...interface{}) {
Default.Print(obj...)
}
7 years ago
// Output a warning message
func Warn(obj ...interface{}) {
Default.Warn(obj...)
}
7 years ago
// Output an error message
func Error(obj ...interface{}) {
Default.Error(obj...)
}
7 years ago
// Output a panic message with full stack
func Panic(obj ...interface{}) {
Default.Panic(obj...)
}
7 years ago
// Output a fatal message with full stack
func Fatal(obj ...interface{}) {
Default.Fatal(obj...)
}
7 years ago
// Output a debug message
func Debugln(obj ...interface{}) {
Default.Debugln(obj...)
}
7 years ago
// Output an info message
func Infoln(obj ...interface{}) {
Default.Infoln(obj...)
}
// Output an info message
7 years ago
func Println(obj ...interface{}) {
Default.Println(obj...)
}
// Output a warning message
7 years ago
func Warnln(obj ...interface{}) {
Default.Warnln(obj...)
}
// Output an error message
7 years ago
func Errorln(obj ...interface{}) {
Default.Errorln(obj...)
}
// Output a panic message with full stack
func Panicln(obj ...interface{}) {
Default.Panicln(obj...)
}
// Output a fatal message with full stack
7 years ago
func Fatalln(obj ...interface{}) {
Default.Fatalln(obj...)
}
// Output a debug message
func Debugf(msg string, args ...interface{}) {
7 years ago
Default.Debugf(msg, args...)
}
// Output an info message
func Infof(msg string, args ...interface{}) {
7 years ago
Default.Infof(msg, args...)
}
// Output an info message
func Printf(msg string, args ...interface{}) {
Default.Printf(msg, args...)
}
// Output a warning message
func Warnf(msg string, args ...interface{}) {
7 years ago
Default.Warnf(msg, args...)
}
// Output an error message
func Errorf(msg string, args ...interface{}) {
7 years ago
Default.Errorf(msg, args...)
}
// Output a panic message with full stack
func Panicf(msg string, args ...interface{}) {
Default.Panicf(msg, args...)
}
// Output a fatal message with full stack
func Fatalf(msg string, args ...interface{}) {
7 years ago
Default.Fatalf(msg, args...)
}