From f34c9070c812ae1fa5cb8040001c1ca5429e9072 Mon Sep 17 00:00:00 2001 From: Aidan Date: Thu, 23 Jul 2020 12:12:56 -0700 Subject: [PATCH] I decided I wanted it like this. Soon it should be configurable --- log/logger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log/logger.go b/log/logger.go index 7c9a110..948109d 100644 --- a/log/logger.go +++ b/log/logger.go @@ -51,5 +51,5 @@ func Log(lvl int, msg, context string) { return } - fmt.Println("\033[3m[" + context + "] " + msg + "\033[0m") + fmt.Println("[" + context + "]\033[3m " + msg + "\033[0m") }