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

Update string mapping

This commit is contained in:
2020-02-04 13:51:00 -05:00
parent 84aa08d2e3
commit d621f0e559

View File

@ -66,8 +66,8 @@ func (msg Log) String() string {
"Critical", "Critical",
"Error", "Error",
"Warning", "Warning",
"Debug", "Info",
"Info"} "Debug"}
return fmt.Sprintf("%s: %s", levels[msg.Level], msg.Msg) return fmt.Sprintf("%s: %s", levels[msg.Level], msg.Msg)
} }