11 lines
549 B
Go
11 lines
549 B
Go
//Package for custom logging needs
|
|
package logawl
|
|
|
|
/*
|
|
LogAwl is the marriage of two logging libraries, the standard library logger and a hint of logorus, by grumbulon.
|
|
|
|
LogAwl extends the standard log library with support for log levels and some oop/not oop BS
|
|
This is _different_ from the syslog package in the standard library because you do not define a file
|
|
Since AWL is a cli utility it writes directly to std err. In the future it may require support for writing to a log file or to syslog directly but for now
|
|
logawl will write to std err
|
|
*/
|