From 485bd3f70b8a0488a58e21a99150cc1109e749a1 Mon Sep 17 00:00:00 2001 From: mleku Date: Tue, 21 Oct 2025 21:38:02 +0100 Subject: [PATCH] Update log level specifications to include trailing spaces for better formatting --- log.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/log.go b/log.go index ed57338..53c0f00 100644 --- a/log.go +++ b/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}, } )