From 61911326207111f7a13025a8db3c2ee3a1f4d8b3 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sun, 30 Nov 2025 20:41:44 -0500 Subject: [PATCH] Move time stamps to the end of the message instead of the beginning. --- ui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui.go b/ui.go index a33667a..9dc0ebd 100644 --- a/ui.go +++ b/ui.go @@ -71,7 +71,7 @@ func (b *Barnard) UpdateInputStatus(status string) { func (b *Barnard) AddOutputLine(line string) { now := time.Now() - b.UiOutput.AddLine(fmt.Sprintf("[%02d:%02d:%02d] %s", now.Hour(), now.Minute(), now.Second(), line)) + b.UiOutput.AddLine(fmt.Sprintf("%s [%02d:%02d:%02d]", line, now.Hour(), now.Minute(), now.Second())) } func (b *Barnard) AddOutputMessage(sender *gumble.User, message string) {