Documentation
¶
Index ¶
- func Debug()
- func Error(v ...interface{})
- func Errorf(format string, v ...interface{})
- func Errorln(v ...interface{})
- func Fatal(v ...interface{})
- func Fatalf(format string, v ...interface{})
- func Fatalln(v ...interface{})
- func Info(v ...interface{})
- func Infof(format string, v ...interface{})
- func Infoln(v ...interface{})
- func Todo(v ...interface{})
- func Todof(format string, v ...interface{})
- func Todoln(v ...interface{})
- func Warn(v ...interface{})
- func Warnf(format string, v ...interface{})
- func Warnln(v ...interface{})
- type Logger
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Error ¶
func Error(v ...interface{})
Error calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Print.
func Errorf ¶
func Errorf(format string, v ...interface{})
Errorf calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Printf.
func Errorln ¶
func Errorln(v ...interface{})
Errorln calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Println.
func Fatal ¶
func Fatal(v ...interface{})
Fatal calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Print.
func Fatalf ¶
func Fatalf(format string, v ...interface{})
Fatalf calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Printf.
func Fatalln ¶
func Fatalln(v ...interface{})
Fatalln calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Println.
func Info ¶
func Info(v ...interface{})
Info calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Print.
func Infof ¶
func Infof(format string, v ...interface{})
Infof calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Printf.
func Infoln ¶
func Infoln(v ...interface{})
Infoln calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Println.
func Todo ¶
func Todo(v ...interface{})
Todo calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Print.
func Todof ¶
func Todof(format string, v ...interface{})
Todof calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Printf.
func Todoln ¶
func Todoln(v ...interface{})
Todoln calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Println.
func Warn ¶
func Warn(v ...interface{})
Warn calls Output to print to the standard logger. Arguments are handled in the manner of fmt.Print.
Types ¶
type Logger ¶
type Logger interface { io.WriteCloser // Info calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Print. Info(v ...interface{}) // Infof calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Printf. Infof(format string, v ...interface{}) // Infoln calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Println. Infoln(v ...interface{}) // Error calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Print. Error(v ...interface{}) // Errorf calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Printf. Errorf(format string, v ...interface{}) // Errorln calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Println. Errorln(v ...interface{}) // Warn calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Print. Warn(v ...interface{}) // Warnf calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Printf. Warnf(format string, v ...interface{}) // Warnln calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Println. Warnln(v ...interface{}) // Fatal calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Print. Fatal(v ...interface{}) // Fatalf calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Printf. Fatalf(format string, v ...interface{}) // Fatalln calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Println. Fatalln(v ...interface{}) // Todo calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Print. Todo(v ...interface{}) // Todof calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Printf. Todof(format string, v ...interface{}) // Todoln calls Output to print to the standard logger. // Arguments are handled in the manner of fmt.Println. Todoln(v ...interface{}) }