We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7a908b + 2ef8e67 commit e14502aCopy full SHA for e14502a
1 file changed
client/cmd/apps.go
@@ -175,9 +175,7 @@ func printLogs(logs string) error {
175
for _, log := range strings.Split(logs, `\\n\\n`) {
176
category := "unknown"
177
parts := strings.Split(strings.Split(log, " -- ")[0], " ")
178
- if len(parts) >= 2 {
179
- category = parts[1]
180
- }
+ category = parts[0]
181
colorVars := map[string]string{
182
"Color": chooseColor(category),
183
"Log": log,
0 commit comments