diff --git a/statuslog.go b/statuslog.go index 71a8fd4..3717720 100644 --- a/statuslog.go +++ b/statuslog.go @@ -112,6 +112,10 @@ func (s *statusLogStruct) print() { } func (s *statusLogStruct) padLeft(str string, length int) string { + if !s.isRealtimeInternal() { + return str + } + for len(str) < length { str = " " + str }