Update log level specifications to include trailing spaces for better formatting
This commit is contained in:
14
log.go
14
log.go
@@ -87,13 +87,13 @@ var (
|
|||||||
|
|
||||||
// LevelSpecs specifies the id, string name and color-printing function
|
// LevelSpecs specifies the id, string name and color-printing function
|
||||||
LevelSpecs = []LevelSpec{
|
LevelSpecs = []LevelSpec{
|
||||||
{Off, "", NoSprint},
|
{Off, " ", NoSprint},
|
||||||
{Fatal, "☠️", fmt.Sprint},
|
{Fatal, "☠️ ", fmt.Sprint},
|
||||||
{Error, "🚨", fmt.Sprint},
|
{Error, "🚨 ", fmt.Sprint},
|
||||||
{Warn, "⚠️", fmt.Sprint},
|
{Warn, "⚠️ ", fmt.Sprint},
|
||||||
{Info, "ℹ️", fmt.Sprint},
|
{Info, "ℹ️ ", fmt.Sprint},
|
||||||
{Debug, "🔎", fmt.Sprint},
|
{Debug, "🔎 ", fmt.Sprint},
|
||||||
{Trace, "👻", fmt.Sprint},
|
{Trace, "👻 ", fmt.Sprint},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user