Skip to content

Commit 74cd82a

Browse files
committed
rename for consistency
1 parent e8e0352 commit 74cd82a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/log/event_format.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ func EventFormatTextMessage(mode *WriterMode, event *Event, msgFormat string, ms
110110
buf = append(buf, ' ')
111111
}
112112
if flags&(Ltime|Lmicroseconds) != 0 {
113-
hour, minimum, sec := t.Clock()
113+
hour, minNum, sec := t.Clock()
114114
buf = itoa(buf, hour, 2)
115115
buf = append(buf, ':')
116-
buf = itoa(buf, minimum, 2)
116+
buf = itoa(buf, minNum, 2)
117117
buf = append(buf, ':')
118118
buf = itoa(buf, sec, 2)
119119
if flags&Lmicroseconds != 0 {

0 commit comments

Comments
 (0)