Skip to content

Commit ca232b9

Browse files
authored
zapcore/BufferedWriteSyncer: More docs (#1139)
Better document how to use BufferedWriteSyncer in a real application. Highlight that a `Stop()` method call should be deferred, and how to change the default parameters of a BufferedWriteSyncer.
1 parent 4cfaabd commit ca232b9

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

zapcore/buffered_write_syncer.go

+31
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,37 @@ const (
4343
//
4444
// BufferedWriteSyncer is safe for concurrent use. You don't need to use
4545
// zapcore.Lock for WriteSyncers with BufferedWriteSyncer.
46+
//
47+
// To set up a BufferedWriteSyncer, construct a WriteSyncer for your log
48+
// destination (*os.File is a valid WriteSyncer), wrap it with
49+
// BufferedWriteSyncer, and defer a Stop() call for when you no longer need the
50+
// object.
51+
//
52+
// func main() {
53+
// ws := ... // your log destination
54+
// bws := &zapcore.BufferedWriteSyncer{WS: ws}
55+
// defer bws.Stop()
56+
//
57+
// // ...
58+
// core := zapcore.NewCore(enc, bws, lvl)
59+
// logger := zap.New(core)
60+
//
61+
// // ...
62+
// }
63+
//
64+
// By default, a BufferedWriteSyncer will buffer up to 256 kilobytes of logs,
65+
// waiting at most 30 seconds between flushes.
66+
// You can customize these parameters by setting the Size or FlushInterval
67+
// fields.
68+
// For example, the following buffers up to 512 kB of logs before flushing them
69+
// to Stderr, with a maximum of one minute between each flush.
70+
//
71+
// ws := &BufferedWriteSyncer{
72+
// WS: os.Stderr,
73+
// Size: 512 * 1024, // 512 kB
74+
// FlushInterval: time.Minute,
75+
// }
76+
// defer ws.Stop()
4677
type BufferedWriteSyncer struct {
4778
// WS is the WriteSyncer around which BufferedWriteSyncer will buffer
4879
// writes.

0 commit comments

Comments
 (0)