-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
33 lines (25 loc) · 823 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package main
import (
"os"
"github.com/grafov/kiwi"
)
func main() {
// Bind a new logger to a variable. You may create any number of
// loggers.
log := kiwi.New()
// For starting write log records to some writer output should be
// initialized.
output := kiwi.SinkTo(os.Stdout, kiwi.AsLogfmt()).Start()
log.Add("sample-record", 1, "key", "value")
log.Log()
// The most of the logger and the output operations support
// chaining.
log.Add("sample-record", 2, "key", "value", "key2", 123).Log()
// On pause output will drop any incoming records.
output.Stop()
log.Add("this record will be dropped because single output we declared is on pause")
output.Start()
// The output will be automatically closed on application exit but
// you can explicitly close it and free some memory.
output.Close()
}