We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ff93ba commit 6fd453fCopy full SHA for 6fd453f
1 file changed
cmd/apps.go
@@ -172,7 +172,7 @@ func AppLogs(appID string, lines int) error {
172
173
// printLogs prints each log line with a color matched to its category.
174
func printLogs(logs string) error {
175
- for _, log := range strings.Split(logs, "\\n\\n") {
+ for _, log := range strings.Split(logs, `\n`) {
176
category := "unknown"
177
parts := strings.Split(strings.Split(log, " -- ")[0], " ")
178
category = parts[0]
0 commit comments