forked from uber-go/zap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_test.go
223 lines (185 loc) · 6.62 KB
/
example_test.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
// Copyright (c) 2016 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package zap_test
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
"time"
"github.com/uber-go/zap"
)
func Example() {
// Log in JSON, using zap's reflection-free JSON encoder. By default, loggers
// write all InfoLevel and above logs to standard out.
logger := zap.New(
zap.NewJSONEncoder(zap.NoTime()), // drop timestamps in tests
)
logger.Warn("Log without structured data...")
logger.Warn(
"Or use strongly-typed wrappers to add structured context.",
zap.String("library", "zap"),
zap.Duration("latency", time.Nanosecond),
)
// Avoid re-serializing the same data repeatedly by creating a child logger
// with some attached context. That context is added to all the child's
// log output, but doesn't affect the parent.
child := logger.With(
zap.String("user", "[email protected]"),
zap.Int("visits", 42),
)
child.Error("Oh no!")
// Output:
// {"level":"warn","msg":"Log without structured data..."}
// {"level":"warn","msg":"Or use strongly-typed wrappers to add structured context.","library":"zap","latency":1}
// {"level":"error","msg":"Oh no!","user":"[email protected]","visits":42}
}
func Example_fileOutput() {
// Create a temporary file to output logs to.
f, err := ioutil.TempFile("", "log")
if err != nil {
panic("failed to create temporary file")
}
defer os.Remove(f.Name())
logger := zap.New(
zap.NewJSONEncoder(zap.NoTime()), // drop timestamps in tests
// Write the logging output to the specified file instead of stdout.
// Any type implementing zap.WriteSyncer or zap.WriteFlusher can be used.
zap.Output(f),
)
logger.Info("This is an info log.", zap.Int("foo", 42))
// Sync the file so logs are written to disk, and print the file contents.
// zap will call Sync automatically when logging at FatalLevel or PanicLevel.
f.Sync()
contents, err := ioutil.ReadFile(f.Name())
if err != nil {
panic("failed to read temporary file")
}
fmt.Println(string(contents))
// Output:
// {"level":"info","msg":"This is an info log.","foo":42}
}
func ExampleNest() {
logger := zap.New(
zap.NewJSONEncoder(zap.NoTime()), // drop timestamps in tests
)
// We'd like the logging context to be {"outer":{"inner":42}}
nest := zap.Nest("outer", zap.Int("inner", 42))
logger.Info("Logging a nested field.", nest)
// Output:
// {"level":"info","msg":"Logging a nested field.","outer":{"inner":42}}
}
func ExampleNew() {
// The default logger outputs to standard out and only writes logs that are
// Info level or higher.
logger := zap.New(zap.NewJSONEncoder(
zap.NoTime(), // drop timestamps in tests
))
// The default logger does not print Debug logs.
logger.Debug("This won't be printed.")
logger.Info("This is an info log.")
// Output:
// {"level":"info","msg":"This is an info log."}
}
func ExampleNew_textEncoder() {
// For more human-readable output in the console, use a TextEncoder.
textLogger := zap.New(zap.NewTextEncoder(
zap.TextNoTime(), // drop timestamps in tests.
))
textLogger.Info("This is a text log.")
// Output:
// [I] This is a text log.
}
func ExampleNew_options() {
// We can pass multiple options to the NewJSON method to configure
// the logging level, output location, or even the initial context.
logger := zap.New(
zap.NewJSONEncoder(zap.NoTime()), // drop timestamps in tests
zap.DebugLevel,
zap.Fields(zap.Int("count", 1)),
)
logger.Debug("This is a debug log.")
logger.Info("This is an info log.")
// Output:
// {"level":"debug","msg":"This is a debug log.","count":1}
// {"level":"info","msg":"This is an info log.","count":1}
}
func ExampleCheckedMessage() {
logger := zap.New(
zap.NewJSONEncoder(zap.NoTime()), // drop timestamps in tests
)
// By default, the debug logging level is disabled. However, calls to
// logger.Debug will still allocate a slice to hold any passed fields.
// Particularly performance-sensitive applications can avoid paying this
// penalty by using checked messages.
if cm := logger.Check(zap.DebugLevel, "This is a debug log."); cm.OK() {
// Debug-level logging is disabled, so we won't get here.
cm.Write(zap.Int("foo", 42), zap.Stack())
}
if cm := logger.Check(zap.InfoLevel, "This is an info log."); cm.OK() {
// Since info-level logging is enabled, we expect to write out this message.
cm.Write()
}
// Output:
// {"level":"info","msg":"This is an info log."}
}
func ExampleLevel_MarshalText() {
level := zap.ErrorLevel
s := struct {
Level *zap.Level `json:"level"`
}{&level}
bytes, _ := json.Marshal(s)
fmt.Println(string(bytes))
// Output:
// {"level":"error"}
}
func ExampleLevel_UnmarshalText() {
var s struct {
Level zap.Level `json:"level"`
}
// The zero value for a zap.Level is zap.InfoLevel.
fmt.Println(s.Level)
json.Unmarshal([]byte(`{"level":"error"}`), &s)
fmt.Println(s.Level)
// Output:
// info
// error
}
func ExampleNewJSONEncoder() {
// An encoder with the default settings.
zap.NewJSONEncoder()
// Dropping timestamps is often useful in tests.
zap.NewJSONEncoder(zap.NoTime())
// In production, customize the encoder to work with your log aggregation
// system.
zap.NewJSONEncoder(
zap.RFC3339Formatter("@timestamp"), // human-readable timestamps
zap.MessageKey("@message"), // customize the message key
zap.LevelString("@level"), // stringify the log level
)
}
func ExampleNewTextEncoder() {
// A text encoder with the default settings.
zap.NewTextEncoder()
// Dropping timestamps is often useful in tests.
zap.NewTextEncoder(zap.TextNoTime())
// If you don't like the default timestamp formatting, choose another.
zap.NewTextEncoder(zap.TextTimeFormat(time.RFC822))
}