We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 852b0b0 + 68c68b8 commit c673253Copy full SHA for c673253
1 file changed
cmd/apps.go
@@ -168,7 +168,7 @@ func AppLogs(appID string, lines int) error {
168
169
// printLogs prints each log line with a color matched to its category.
170
func printLogs(logs string) error {
171
- for _, log := range strings.Split(logs, `\\n\\n`) {
+ for _, log := range strings.Split(logs, "\n") {
172
category := "unknown"
173
parts := strings.Split(strings.Split(log, " -- ")[0], " ")
174
category = parts[0]
0 commit comments