Skip to content

Commit

Permalink
fix: multi service logging (#2435)
Browse files Browse the repository at this point in the history
## Description
Fix for how logs are printing.

## Is this change user facing?
YES
  • Loading branch information
tedim52 committed May 7, 2024
1 parent 1dadf98 commit d303597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cli/commands/service/logs/logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d303597

Please sign in to comment.