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 = []LevelSpec{
|
||||
{Off, "", NoSprint},
|
||||
{Fatal, "☠️", fmt.Sprint},
|
||||
{Error, "🚨", fmt.Sprint},
|
||||
{Warn, "⚠️", fmt.Sprint},
|
||||
{Info, "ℹ️", fmt.Sprint},
|
||||
{Debug, "🔎", fmt.Sprint},
|
||||
{Trace, "👻", fmt.Sprint},
|
||||
{Off, " ", NoSprint},
|
||||
{Fatal, "☠️ ", fmt.Sprint},
|
||||
{Error, "🚨 ", fmt.Sprint},
|
||||
{Warn, "⚠️ ", fmt.Sprint},
|
||||
{Info, "ℹ️ ", fmt.Sprint},
|
||||
{Debug, "🔎 ", fmt.Sprint},
|
||||
{Trace, "👻 ", fmt.Sprint},
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user