package
0.0.0-20221204093943-4ea7438238e0
Repository: https://github.com/lsamu/ago.git
Documentation: pkg.go.dev
# Functions
Critical logs a message using CRITICAL as log level.
Criticalf logs a message using CRITICAL as log level.
Debug logs a message using DEBUG as log level.
Debugf logs a message using DEBUG as log level.
Dump data.
Error logs a message using ERROR as log level.
Errorf logs a message using ERROR as log level.
Fatal is equivalent to l.Critical(fmt.Sprint()) followed by a call to os.Exit(1).
Fatalf is equivalent to l.Critical followed by a call to os.Exit(1).
Info logs a message using INFO as log level.
Infof logs a message using INFO as log level.
NewLogger with category, formatter, extraCalldepth.
Notice logs a message using NOTICE as log level.
Noticef logs a message using NOTICE as log level.
Panic is equivalent to l.Critical(fmt.Sprint()) followed by a call to panic().
Panicf is equivalent to l.Critical followed by a call to panic().
Warning logs a message using WARNING as log level.
Warningf logs a message using WARNING as log level.