log: fix a typo (#29883)

logger
pull/29918/head
miles 4 months ago committed by GitHub
parent b36c73813c
commit 7270cba25c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      log/logger_test.go

@ -26,7 +26,7 @@ func TestLoggingWithVmodule(t *testing.T) {
logger.Trace("a message", "foo", "bar") logger.Trace("a message", "foo", "bar")
have := out.String() have := out.String()
// The timestamp is locale-dependent, so we want to trim that off // The timestamp is locale-dependent, so we want to trim that off
// "INFO [01-01|00:00:00.000] a messag ..." -> "a messag..." // "INFO [01-01|00:00:00.000] a message ..." -> "a message..."
have = strings.Split(have, "]")[1] have = strings.Split(have, "]")[1]
want := " a message foo=bar\n" want := " a message foo=bar\n"
if have != want { if have != want {
@ -42,7 +42,7 @@ func TestTerminalHandlerWithAttrs(t *testing.T) {
logger.Trace("a message", "foo", "bar") logger.Trace("a message", "foo", "bar")
have := out.String() have := out.String()
// The timestamp is locale-dependent, so we want to trim that off // The timestamp is locale-dependent, so we want to trim that off
// "INFO [01-01|00:00:00.000] a messag ..." -> "a messag..." // "INFO [01-01|00:00:00.000] a message ..." -> "a message..."
have = strings.Split(have, "]")[1] have = strings.Split(have, "]")[1]
want := " a message baz=bat foo=bar\n" want := " a message baz=bat foo=bar\n"
if have != want { if have != want {

Loading…
Cancel
Save