Fix binary test too
This commit is contained in:
parent
8aa660046f
commit
2da253048d
|
@ -6,6 +6,7 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
// "io/ioutil"
|
// "io/ioutil"
|
||||||
stdlog "log"
|
stdlog "log"
|
||||||
"time"
|
"time"
|
||||||
|
@ -54,8 +55,8 @@ func ExampleLogger_Sample() {
|
||||||
log.Info().Msg("message 4")
|
log.Info().Msg("message 4")
|
||||||
|
|
||||||
fmt.Println(decodeIfBinaryToString(dst.Bytes()))
|
fmt.Println(decodeIfBinaryToString(dst.Bytes()))
|
||||||
// Output: {"level":"info","message":"message 2"}
|
// Output: {"level":"info","message":"message 1"}
|
||||||
// {"level":"info","message":"message 4"}
|
// {"level":"info","message":"message 3"}
|
||||||
}
|
}
|
||||||
|
|
||||||
type LevelNameHook1 struct{}
|
type LevelNameHook1 struct{}
|
||||||
|
|
Loading…
Reference in New Issue