aboutsummaryrefslogtreecommitdiff
path: root/cmd/krino/log.go
diff options
context:
space:
mode:
authorLukasz Kasprzak <lukas@labunix.xyz>2026-09-14 21:36:31 +0200
committerLukasz Kasprzak <lukas@labunix.xyz>2026-09-14 21:36:31 +0200
commitd53c83e2fe6f1ecef006f116095fa8d1d18f3a7d (patch)
tree91f850a794c89eff5221dbbb5fcdb1b9b4632532 /cmd/krino/log.go
parent93cf0729ec7cf3129de0808cbcc3403b86d86fff (diff)
downloadkrino-d53c83e2fe6f1ecef006f116095fa8d1d18f3a7d.tar.gz
krino-d53c83e2fe6f1ecef006f116095fa8d1d18f3a7d.zip
plan 9: errors, explain traces, JSON and log fields never reach the terminal raw
Diffstat (limited to 'cmd/krino/log.go')
-rw-r--r--cmd/krino/log.go2
1 files changed, 1 insertions, 1 deletions
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)"
}