# README
go-logger
A simple logger for small project
APIs
-
Trace(args ...interface{})
-
Tracef(format string, args ...interface{})
-
Tracew(msg string, args ...interface{})
-
Debug(args ...interface{})
-
Debugf(format string, args ...interface{})
-
Debugw(msg string, args ...interface{})
-
Info(args ...interface{})
-
Infof(format string, args ...interface{})
-
Infow(msg string, args ...interface{})
-
Warn(args ...interface{})
-
Warnf(format string, args ...interface{})
-
Warnw(msg string, args ...interface{})
-
Error(args ...interface{})
-
Errorf(format string, args ...interface{})
-
Errorw(msg string, args ...interface{})
-
Panic(args ...interface{})
-
Panicf(format string, args ...interface{})
-
Panicw(msg string, args ...interface{})
# Packages
No description provided by the author
# Functions
Debug debug log.
Debugf debug log with format.
Debugw debug log with additional context.
Error error log.
Errorf error log with format.
Errorw error log with additional context.
Info info log.
Infof info log with format.
Infow info log with additional context.
Panic panic log.
Panicf panic log with format.
Panicw panic log with additional context.
SetFormat set log format.
SetLevel set log level.
Trace trace log.
Tracef trace log with format.
Tracew trace log with additional context.
Warn warning log.
Warnf warning log with format.
Warnw warn log with additional context.
# Type aliases
No description provided by the author