From d53c83e2fe6f1ecef006f116095fa8d1d18f3a7d Mon Sep 17 00:00:00 2001 From: Lukasz Kasprzak Date: Mon, 14 Sep 2026 21:36:31 +0200 Subject: plan 9: errors, explain traces, JSON and log fields never reach the terminal raw --- cmd/krino/log.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/krino/log.go') diff --git a/cmd/krino/log.go b/cmd/krino/log.go index 6904a93..2f6c521 100644 --- a/cmd/krino/log.go +++ b/cmd/krino/log.go @@ -107,7 +107,7 @@ func styleUndone(line string, p palette) string { // the directories it touched, and its counts (see countsText), with // "(undone)" appended when a later run has reversed it. func formatRun(r journal.Run) string { - line := fmt.Sprintf("%s %s %s %s", r.ID, r.Start.Format("2006-01-02 15:04"), display(strings.Join(r.Dirs, ", ")), countsText(r.Counts)) + line := fmt.Sprintf("%s %s %s %s", display(r.ID), r.Start.Format("2006-01-02 15:04"), display(strings.Join(r.Dirs, ", ")), countsText(r.Counts)) if r.Undone { line += " (undone)" } -- cgit v1.3