Skip to content

Commit 3b01397

Browse files
authored
Update logsink.go
changed the log level
1 parent 83ddf62 commit 3b01397

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/logsink/logsink.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ func textPrintf(m *Meta, textSinks []Text, format string, args ...any) (n int, e
203203
//
204204
// Avoid Fprintf, for speed. The format is so simple that we can do it quickly by hand.
205205
// It's worth about 3X. Fprintf is hard.
206-
severityVal:= [] string{"INFOR","WARNI","ERROR","FATAL"}
206+
severityVal:= [] string{"INFO","WARN","ERROR","FATAL"}
207207
buf.WriteByte('[')
208208
buf.WriteString(severityVal[m.Severity])
209209
buf.WriteString("] ")

0 commit comments

Comments
 (0)