24 lines
359 B
Go
24 lines
359 B
Go
// +build !binary_log
|
|
|
|
package diode_test
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"git.tuxpa.in/a/zlog"
|
|
"git.tuxpa.in/a/zlog/diode"
|
|
)
|
|
|
|
func ExampleNewWriter() {
|
|
w := diode.NewWriter(os.Stdout, 1000, 0, func(missed int) {
|
|
fmt.Printf("Dropped %d messages\n", missed)
|
|
})
|
|
log := zlog.New(w)
|
|
log.Print("test")
|
|
|
|
w.Close()
|
|
|
|
// Output: {"level":"debug","message":"test"}
|
|
}
|