mirror of
https://github.com/Rudi9719/loggy.git
synced 2026-03-21 21:07:24 +00:00
Lower debug priority to keep consistent with NYS ITS logging standards.
This commit is contained in:
2
go.mod
2
go.mod
@ -2,4 +2,4 @@ module github.com/rudi9719/loggy
|
|||||||
|
|
||||||
go 1.13
|
go 1.13
|
||||||
|
|
||||||
require samhofi.us/x/keybase v0.0.0-20200103202946-8a5685459a8a
|
require samhofi.us/x/keybase v0.0.0-20200129212102-e05e93be9f3f
|
||||||
|
|||||||
4
go.sum
4
go.sum
@ -1,2 +1,2 @@
|
|||||||
samhofi.us/x/keybase v0.0.0-20200103202946-8a5685459a8a h1:jsu19nVCAySxkd0HBUZ9PKXFOMgR494hBfjrdcPLz1o=
|
samhofi.us/x/keybase v0.0.0-20200129212102-e05e93be9f3f h1:MHSEiuiRFrFi7BTw46lC22PMk3Fit8IvVRM4xANTt20=
|
||||||
samhofi.us/x/keybase v0.0.0-20200103202946-8a5685459a8a/go.mod h1:fcva80IUFyWcHtV4bBSzgKg07K6Rvuvi3GtGCLNGkyE=
|
samhofi.us/x/keybase v0.0.0-20200129212102-e05e93be9f3f/go.mod h1:fcva80IUFyWcHtV4bBSzgKg07K6Rvuvi3GtGCLNGkyE=
|
||||||
|
|||||||
4
loggy.go
4
loggy.go
@ -10,9 +10,9 @@ type LogLevel int
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
// Info level logging
|
// Info level logging
|
||||||
Info LogLevel = 5
|
Info LogLevel = 4
|
||||||
// Debugging output
|
// Debugging output
|
||||||
Debug LogLevel = 4
|
Debug LogLevel = 5
|
||||||
// Will show if logger is set to warning
|
// Will show if logger is set to warning
|
||||||
Warnings LogLevel = 3
|
Warnings LogLevel = 3
|
||||||
// Errors will show by default
|
// Errors will show by default
|
||||||
|
|||||||
Reference in New Issue
Block a user