From d303597fc30f119c7523101ee2679ab1051d9252 Mon Sep 17 00:00:00 2001 From: Tedi Mitiku Date: Tue, 7 May 2024 16:43:24 -0400 Subject: [PATCH] fix: multi service logging (#2435) ## Description Fix for how logs are printing. ## Is this change user facing? YES --- cli/cli/commands/service/logs/logs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cli/commands/service/logs/logs.go b/cli/cli/commands/service/logs/logs.go index f123f45996..550cb5df0b 100644 --- a/cli/cli/commands/service/logs/logs.go +++ b/cli/cli/commands/service/logs/logs.go @@ -284,7 +284,7 @@ func run( for _, serviceLog := range userServiceLogs { colorPrinter := serviceColorPrinterMap[serviceIdentifier] - out.PrintOutLn(fmt.Sprintf("%v %v", colorPrinter("[%v]", serviceIdentifier), serviceLog.GetContent())) + out.PrintOutLn(fmt.Sprintf("[%v] %v", colorPrinter(serviceIdentifier), serviceLog.GetContent())) } } case <-interruptChan: