We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 551417e commit 5b12e5bCopy full SHA for 5b12e5b
lib/logging/log.go
@@ -40,7 +40,7 @@ func (ct *CustomT) Write(p []byte) (n int, err error) {
40
}
41
if ct.ended {
42
l := GetTestLogger(nil)
43
- l.Error().Msgf("%s %s: %s", afterTestEndedMsg, ct.Name(), string(p))
+ l.Info().Msgf("%s %s: %s", afterTestEndedMsg, ct.Name(), string(p))
44
return len(p), nil
45
46
ct.T.Log(strings.TrimSuffix(str, "\n"))
@@ -53,7 +53,7 @@ func (ct CustomT) Printf(format string, v ...interface{}) {
53
s := "%s: "
54
formatted := fmt.Sprintf("%s %s%s", afterTestEndedMsg, s, format)
55
56
- l.Error().Msgf(formatted, ct.Name(), v)
+ l.Info().Msgf(formatted, ct.Name(), v)
57
} else {
58
ct.L.Info().Msgf(format, v...)
59
0 commit comments