Move time stamps to the end of the message instead of the beginning.

This commit is contained in:
Storm Dragon
2025-11-30 20:41:44 -05:00
parent fae372bb78
commit 6191132620

2
ui.go
View File

@@ -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) {