forked from uber-go/zap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_test.go
184 lines (154 loc) · 5.69 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
// 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.
// The default options will log any Info or higher logs to standard out.
logger := zap.NewJSON()
// For repeatable tests, pretend that it's always 1970.
logger.StubTime()
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:
// {"msg":"Log without structured data...","level":"warn","ts":0,"fields":{}}
// {"msg":"Or use strongly-typed wrappers to add structured context.","level":"warn","ts":0,"fields":{"library":"zap","latency":1}}
// {"msg":"Oh no!","level":"error","ts":0,"fields":{"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.NewJSON(
// 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),
)
// Stub the current time in tests.
logger.StubTime()
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 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:
// {"msg":"This is an info log.","level":"info","ts":0,"fields":{"foo":42}}
}
func ExampleNest() {
logger := zap.NewJSON()
// Stub the current time in tests.
logger.StubTime()
// 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:
// {"msg":"Logging a nested field.","level":"info","ts":0,"fields":{"outer":{"inner":42}}}
}
func ExampleNewJSON() {
// The default logger outputs to standard out and only writes logs that are
// Info level or higher.
logger := zap.NewJSON()
// Stub the current time in tests.
logger.StubTime()
// The default logger does not print Debug logs.
logger.Debug("This won't be printed.")
logger.Info("This is an info log.")
// Output:
// {"msg":"This is an info log.","level":"info","ts":0,"fields":{}}
}
func ExampleNewJSON_options() {
// We can pass multiple options to the NewJSON method to configure
// the logging level, output location, or even the initial context.
logger := zap.NewJSON(
zap.DebugLevel,
zap.Fields(zap.Int("count", 1)),
)
// Stub the current time in tests.
logger.StubTime()
logger.Debug("This is a debug log.")
logger.Info("This is an info log.")
// Output:
// {"msg":"This is a debug log.","level":"debug","ts":0,"fields":{"count":1}}
// {"msg":"This is an info log.","level":"info","ts":0,"fields":{"count":1}}
}
func ExampleCheckedMessage() {
logger := zap.NewJSON()
// Stub the current time in tests.
logger.StubTime()
// 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:
// {"msg":"This is an info log.","level":"info","ts":0,"fields":{}}
}
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
}