mirror of
https://github.com/kevin-DL/revel-cmd.git
synced 2026-01-11 18:54:31 +00:00
13 lines
562 B
Go
13 lines
562 B
Go
/*
|
|
Package logger contains filters and handles for the logging utilities in Revel.
|
|
These facilities all currently use the logging library called log15 at
|
|
https://github.com/inconshreveable/log15
|
|
|
|
Defining handlers happens as follows
|
|
1) ALL handlers (log.all.output) replace any existing handlers
|
|
2) Output handlers (log.error.output) replace any existing handlers
|
|
3) Filter handlers (log.xxx.filter, log.xxx.nfilter) append to existing handlers,
|
|
note log.all.filter is treated as a filter handler, so it will NOT replace existing ones
|
|
*/
|
|
package logger
|