1
0
mirror of https://github.com/Rudi9719/loggy.git synced 2026-03-22 05:17:26 +00:00

Lower debug priority to keep consistent with NYS ITS logging standards.

This commit is contained in:
2020-02-03 09:29:49 -05:00
parent 4a33ed86b8
commit 84aa08d2e3
3 changed files with 5 additions and 5 deletions

2
go.mod
View File

@ -2,4 +2,4 @@ module github.com/rudi9719/loggy
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
View File

@ -1,2 +1,2 @@
samhofi.us/x/keybase v0.0.0-20200103202946-8a5685459a8a h1:jsu19nVCAySxkd0HBUZ9PKXFOMgR494hBfjrdcPLz1o=
samhofi.us/x/keybase v0.0.0-20200103202946-8a5685459a8a/go.mod h1:fcva80IUFyWcHtV4bBSzgKg07K6Rvuvi3GtGCLNGkyE=
samhofi.us/x/keybase v0.0.0-20200129212102-e05e93be9f3f h1:MHSEiuiRFrFi7BTw46lC22PMk3Fit8IvVRM4xANTt20=
samhofi.us/x/keybase v0.0.0-20200129212102-e05e93be9f3f/go.mod h1:fcva80IUFyWcHtV4bBSzgKg07K6Rvuvi3GtGCLNGkyE=

View File

@ -10,9 +10,9 @@ type LogLevel int
const (
// Info level logging
Info LogLevel = 5
Info LogLevel = 4
// Debugging output
Debug LogLevel = 4
Debug LogLevel = 5
// Will show if logger is set to warning
Warnings LogLevel = 3
// Errors will show by default