Skip to content

Commit 62f287c

Browse files
authored
Merge pull request #61 from ipfs/feat/zap
Experimental: zap backend for go-log
2 parents 1f8ed5f + 2b4e426 commit 62f287c

File tree

7 files changed

+123
-177
lines changed

7 files changed

+123
-177
lines changed

go.mod

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ module github.com/ipfs/go-log
22

33
require (
44
github.com/gogo/protobuf v1.2.1
5-
github.com/mattn/go-colorable v0.1.1
6-
github.com/opentracing/opentracing-go v1.0.2
7-
github.com/stretchr/testify v1.3.0 // indirect
8-
github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc
9-
golang.org/x/net v0.0.0-20190227160552-c95aed5357e7 // indirect
5+
github.com/opentracing/opentracing-go v1.1.0
6+
github.com/pkg/errors v0.8.1 // indirect
7+
github.com/stretchr/testify v1.4.0 // indirect
8+
go.uber.org/atomic v1.4.0 // indirect
9+
go.uber.org/multierr v1.1.0 // indirect
10+
go.uber.org/zap v1.10.0
1011
)

go.sum

+16-14
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,23 @@ github.com/gogo/protobuf v1.2.1 h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE=
44
github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4=
55
github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=
66
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
7-
github.com/mattn/go-colorable v0.1.1 h1:G1f5SKeVxmagw/IyvzvtZE4Gybcc4Tr1tf7I8z0XgOg=
8-
github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ=
9-
github.com/mattn/go-isatty v0.0.5 h1:tHXDdz1cpzGaovsTB+TVB8q90WEokoVmfMqoVcrLUgw=
10-
github.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=
11-
github.com/opentracing/opentracing-go v1.0.2 h1:3jA2P6O1F9UOrWVpwrIo17pu01KWvNWg4X946/Y5Zwg=
12-
github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
7+
github.com/opentracing/opentracing-go v1.1.0 h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=
8+
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
9+
github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
10+
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
1311
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
1412
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
1513
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
16-
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
17-
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
18-
github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc h1:9lDbC6Rz4bwmou+oE6Dt4Cb2BGMur5eR/GYptkKUVHo=
19-
github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc/go.mod h1:bopw91TMyo8J3tvftk8xmU2kPmlrt4nScJQZU2hE5EM=
20-
golang.org/x/net v0.0.0-20190227160552-c95aed5357e7 h1:C2F/nMkR/9sfUTpvR3QrjBuTdvMUC/cFajkphs1YLQo=
21-
golang.org/x/net v0.0.0-20190227160552-c95aed5357e7/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
22-
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223 h1:DH4skfRX4EBpamg7iV4ZlCpblAHI6s6TDM39bFZumv8=
23-
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
14+
github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=
15+
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
16+
go.uber.org/atomic v1.4.0 h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=
17+
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
18+
go.uber.org/multierr v1.1.0 h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=
19+
go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=
20+
go.uber.org/zap v1.10.0 h1:ORx85nbTijNz8ljznvCMR1ZBIPKFn3jQrag10X2AsuM=
21+
go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
2422
golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
23+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
24+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
25+
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
26+
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

levels.go

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
package log
2+
3+
import "go.uber.org/zap/zapcore"
4+
5+
// LogLevel represents a log severity level. Use the package variables as an
6+
// enum.
7+
type LogLevel zapcore.Level
8+
9+
var (
10+
LevelDebug = LogLevel(zapcore.DebugLevel)
11+
LevelInfo = LogLevel(zapcore.InfoLevel)
12+
LevelWarn = LogLevel(zapcore.WarnLevel)
13+
LevelError = LogLevel(zapcore.ErrorLevel)
14+
LevelDPanic = LogLevel(zapcore.DPanicLevel)
15+
LevelPanic = LogLevel(zapcore.PanicLevel)
16+
LevelFatal = LogLevel(zapcore.FatalLevel)
17+
)
18+
19+
// LevelFromString parses a string-based level and returns the corresponding
20+
// LogLevel.
21+
//
22+
// Supported strings are: DEBUG, INFO, WARN, ERROR, DPANIC, PANIC, FATAL, and
23+
// their lower-case forms.
24+
//
25+
// The returned LogLevel must be discarded if error is not nil.
26+
func LevelFromString(level string) (LogLevel, error) {
27+
lvl := zapcore.InfoLevel // zero value
28+
err := lvl.Set(level)
29+
return LogLevel(lvl), err
30+
}

log.go

+28-30
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import (
1212
"time"
1313

1414
writer "github.com/ipfs/go-log/writer"
15-
"github.com/whyrusleeping/go-logging"
1615

1716
opentrace "github.com/opentracing/opentracing-go"
1817
otExt "github.com/opentracing/opentracing-go/ext"
18+
"go.uber.org/zap"
1919
)
2020

2121
var log = Logger("eventlog")
@@ -159,46 +159,48 @@ type EventLogger interface {
159159
SerializeContext(ctx context.Context) ([]byte, error)
160160
}
161161

162-
// Logger retrieves an event logger by name
163-
func Logger(system string) EventLogger {
162+
var _ EventLogger = Logger("test-logger")
164163

165-
// TODO if we would like to adjust log levels at run-time. Store this event
166-
// logger in a map (just like the util.Logger impl)
164+
// Logger retrieves an event logger by name
165+
func Logger(system string) *ZapEventLogger {
167166
if len(system) == 0 {
168167
setuplog := getLogger("setup-logger")
169-
setuplog.Warning("Missing name parameter")
168+
setuplog.Error("Missing name parameter")
170169
system = "undefined"
171170
}
172171

173172
logger := getLogger(system)
174173

175-
return &eventLogger{system: system, Logger: *logger}
174+
return &ZapEventLogger{system: system, SugaredLogger: *logger}
176175
}
177176

178-
// eventLogger implements the EventLogger and wraps a go-logging Logger
179-
type eventLogger struct {
180-
logging.Logger
177+
// ZapEventLogger implements the EventLogger and wraps a go-logging Logger
178+
type ZapEventLogger struct {
179+
zap.SugaredLogger
181180

182181
system string
183182
// TODO add log-level
184183
}
185184

186-
func (el *eventLogger) Warn(args ...interface{}) {
187-
el.Warning(args...)
185+
// Deprecated: use Warn
186+
func (el *ZapEventLogger) Warning(args ...interface{}) {
187+
el.Warn(args...)
188188
}
189-
func (el *eventLogger) Warnf(format string, args ...interface{}) {
190-
el.Warningf(format, args...)
189+
190+
// Deprecated: use Warnf
191+
func (el *ZapEventLogger) Warningf(format string, args ...interface{}) {
192+
el.Warnf(format, args...)
191193
}
192194

193195
// Deprecated: Stop using go-log for event logging
194-
func (el *eventLogger) Start(ctx context.Context, operationName string) context.Context {
196+
func (el *ZapEventLogger) Start(ctx context.Context, operationName string) context.Context {
195197
span, ctx := opentrace.StartSpanFromContext(ctx, operationName)
196198
span.SetTag("system", el.system)
197199
return ctx
198200
}
199201

200202
// Deprecated: Stop using go-log for event logging
201-
func (el *eventLogger) StartFromParentState(ctx context.Context, operationName string, parent []byte) (context.Context, error) {
203+
func (el *ZapEventLogger) StartFromParentState(ctx context.Context, operationName string, parent []byte) (context.Context, error) {
202204
sc, err := deserializeContext(parent)
203205
if err != nil {
204206
return nil, err
@@ -211,7 +213,7 @@ func (el *eventLogger) StartFromParentState(ctx context.Context, operationName s
211213
}
212214

213215
// Deprecated: Stop using go-log for event logging
214-
func (el *eventLogger) SerializeContext(ctx context.Context) ([]byte, error) {
216+
func (el *ZapEventLogger) SerializeContext(ctx context.Context) ([]byte, error) {
215217
gTracer := opentrace.GlobalTracer()
216218
b := make([]byte, 0)
217219
carrier := bytes.NewBuffer(b)
@@ -223,7 +225,7 @@ func (el *eventLogger) SerializeContext(ctx context.Context) ([]byte, error) {
223225
}
224226

225227
// Deprecated: Stop using go-log for event logging
226-
func (el *eventLogger) LogKV(ctx context.Context, alternatingKeyValues ...interface{}) {
228+
func (el *ZapEventLogger) LogKV(ctx context.Context, alternatingKeyValues ...interface{}) {
227229
span := opentrace.SpanFromContext(ctx)
228230
if span == nil {
229231
_, file, line, _ := runtime.Caller(1)
@@ -234,7 +236,7 @@ func (el *eventLogger) LogKV(ctx context.Context, alternatingKeyValues ...interf
234236
}
235237

236238
// Deprecated: Stop using go-log for event logging
237-
func (el *eventLogger) SetTag(ctx context.Context, k string, v interface{}) {
239+
func (el *ZapEventLogger) SetTag(ctx context.Context, k string, v interface{}) {
238240
span := opentrace.SpanFromContext(ctx)
239241
if span == nil {
240242
_, file, line, _ := runtime.Caller(1)
@@ -245,7 +247,7 @@ func (el *eventLogger) SetTag(ctx context.Context, k string, v interface{}) {
245247
}
246248

247249
// Deprecated: Stop using go-log for event logging
248-
func (el *eventLogger) SetTags(ctx context.Context, tags map[string]interface{}) {
250+
func (el *ZapEventLogger) SetTags(ctx context.Context, tags map[string]interface{}) {
249251
span := opentrace.SpanFromContext(ctx)
250252
if span == nil {
251253
_, file, line, _ := runtime.Caller(1)
@@ -257,7 +259,7 @@ func (el *eventLogger) SetTags(ctx context.Context, tags map[string]interface{})
257259
}
258260
}
259261

260-
func (el *eventLogger) setErr(ctx context.Context, err error, skip int) {
262+
func (el *ZapEventLogger) setErr(ctx context.Context, err error, skip int) {
261263
span := opentrace.SpanFromContext(ctx)
262264
if span == nil {
263265
_, file, line, _ := runtime.Caller(skip)
@@ -273,12 +275,12 @@ func (el *eventLogger) setErr(ctx context.Context, err error, skip int) {
273275
}
274276

275277
// Deprecated: Stop using go-log for event logging
276-
func (el *eventLogger) SetErr(ctx context.Context, err error) {
278+
func (el *ZapEventLogger) SetErr(ctx context.Context, err error) {
277279
el.setErr(ctx, err, 1)
278280
}
279281

280282
// Deprecated: Stop using go-log for event logging
281-
func (el *eventLogger) Finish(ctx context.Context) {
283+
func (el *ZapEventLogger) Finish(ctx context.Context) {
282284
span := opentrace.SpanFromContext(ctx)
283285
if span == nil {
284286
_, file, line, _ := runtime.Caller(1)
@@ -289,7 +291,7 @@ func (el *eventLogger) Finish(ctx context.Context) {
289291
}
290292

291293
// Deprecated: Stop using go-log for event logging
292-
func (el *eventLogger) FinishWithErr(ctx context.Context, err error) {
294+
func (el *ZapEventLogger) FinishWithErr(ctx context.Context, err error) {
293295
el.setErr(ctx, err, 2)
294296
el.Finish(ctx)
295297
}
@@ -306,7 +308,7 @@ func deserializeContext(bCtx []byte) (opentrace.SpanContext, error) {
306308
}
307309

308310
// Deprecated: Stop using go-log for event logging
309-
func (el *eventLogger) EventBegin(ctx context.Context, event string, metadata ...Loggable) *EventInProgress {
311+
func (el *ZapEventLogger) EventBegin(ctx context.Context, event string, metadata ...Loggable) *EventInProgress {
310312
ctx = el.Start(ctx, event)
311313

312314
for _, m := range metadata {
@@ -329,12 +331,8 @@ func (el *eventLogger) EventBegin(ctx context.Context, event string, metadata ..
329331
return eip
330332
}
331333

332-
type activeEventKeyType struct{}
333-
334-
var activeEventKey = activeEventKeyType{}
335-
336334
// Deprecated: Stop using go-log for event logging
337-
func (el *eventLogger) Event(ctx context.Context, event string, metadata ...Loggable) {
335+
func (el *ZapEventLogger) Event(ctx context.Context, event string, metadata ...Loggable) {
338336

339337
// short circuit if theres nothing to write to
340338
if !writer.WriterGroup.Active() {

0 commit comments

Comments
 (0)