-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WrapError: wrap an error with fields to be logged by zap.Error #1271
base: master
Are you sure you want to change the base?
Changes from 9 commits
a99527f
2a88ec3
b71daf6
36183ab
1122080
568f031
26b53cc
c9125d3
2f96d3a
baf6027
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,12 @@ package zap_test | |
|
||
import ( | ||
"encoding/json" | ||
"errors" | ||
"fmt" | ||
"io" | ||
"log" | ||
"os" | ||
"strings" | ||
"time" | ||
|
||
"go.uber.org/zap" | ||
|
@@ -358,3 +361,46 @@ func ExampleWrapCore_wrap() { | |
// {"level":"info","msg":"doubled"} | ||
// {"level":"info","msg":"doubled"} | ||
} | ||
|
||
type timeouts struct { | ||
readTimeout time.Duration | ||
writeTimeout time.Duration | ||
} | ||
|
||
func parseTimeouts(line string) (timeouts, error) { | ||
parts := strings.Split(line, " ") | ||
if len(parts) != 2 { | ||
return timeouts{}, errors.New("line not in expected format") | ||
} | ||
|
||
read, err := time.ParseDuration(parts[0]) | ||
if err != nil { | ||
return timeouts{}, zap.WrapError(fmt.Errorf("parse readTimeout: %w", err), | ||
zap.String("readTimeout", parts[0])) | ||
} | ||
|
||
write, err := time.ParseDuration(parts[1]) | ||
if err != nil { | ||
return timeouts{}, zap.WrapError(fmt.Errorf("parse writeTimeout: %w", err), | ||
zap.String("writeTimeout", parts[1])) | ||
} | ||
|
||
return timeouts{read, write}, nil | ||
} | ||
|
||
func ExampleWrapError() { | ||
logger := zap.NewExample() | ||
defer logger.Sync() | ||
|
||
if _, err := parseTimeouts(""); err != nil { | ||
logger.Error("parse empty", zap.Error(err)) | ||
} | ||
|
||
if _, err := parseTimeouts("12ms 45"); err != nil { | ||
logger.Error("parse invalid duration", zap.Error(err)) | ||
} | ||
|
||
// Output: | ||
// {"level":"error","msg":"parse empty","error":"line not in expected format"} | ||
// {"level":"error","msg":"parse invalid duration","error":"parse writeTimeout: time: missing unit in duration \"45\"","errorFields":{"writeTimeout":"45"}} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. LG: {
"level": "error",
"msg": "parse invalid duration",
"error": "parse writeTimeout: time: missing unit in duration \"45\"",
"errorFields": {
"writeTimeout": "45"
}
} |
||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,54 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||
// Copyright (c) 2023 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 | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
import ( | ||||||||||||||||||||||||||||||||||||||||||||||||||
"go.uber.org/zap/zapcore" | ||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
type errorWithFields struct { | ||||||||||||||||||||||||||||||||||||||||||||||||||
err error | ||||||||||||||||||||||||||||||||||||||||||||||||||
fields []Field | ||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
// WrapError returns an error that will log the provided fields if the error | ||||||||||||||||||||||||||||||||||||||||||||||||||
// is logged using `Error`. | ||||||||||||||||||||||||||||||||||||||||||||||||||
func WrapError(err error, fields ...Field) error { | ||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. optional: do we want to return nil if error is nil? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I think we should return |
||||||||||||||||||||||||||||||||||||||||||||||||||
return &errorWithFields{ | ||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+32
to
+35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
(I wanted to clarify that 'Error' refers to the field constructor, not the Logger.Error method and given that it's a new thing, more details on what it does and how to use it.) |
||||||||||||||||||||||||||||||||||||||||||||||||||
err: err, | ||||||||||||||||||||||||||||||||||||||||||||||||||
fields: fields, | ||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
func (e errorWithFields) Unwrap() error { | ||||||||||||||||||||||||||||||||||||||||||||||||||
return e.err | ||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
func (e errorWithFields) Error() string { | ||||||||||||||||||||||||||||||||||||||||||||||||||
return e.err.Error() | ||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+41
to
+46
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any reason to implement these receivers on the value instead of pointer, given that WrapError returns a pointer? |
||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
func (e errorWithFields) MarshalLogObject(enc zapcore.ObjectEncoder) error { | ||||||||||||||||||||||||||||||||||||||||||||||||||
for _, f := range e.fields { | ||||||||||||||||||||||||||||||||||||||||||||||||||
f.AddTo(enc) | ||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,98 @@ | ||||||||||
// Copyright (c) 2023 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 | ||||||||||
|
||||||||||
import ( | ||||||||||
"errors" | ||||||||||
"fmt" | ||||||||||
"testing" | ||||||||||
|
||||||||||
"github.com/stretchr/testify/assert" | ||||||||||
"go.uber.org/zap/zapcore" | ||||||||||
) | ||||||||||
|
||||||||||
func TestWrapError(t *testing.T) { | ||||||||||
var ( | ||||||||||
rootErr = errors.New("root err") | ||||||||||
wrap1 = fmt.Errorf("wrap1: %w", rootErr) | ||||||||||
wrap2 = WrapError(wrap1, | ||||||||||
String("user", "foo"), | ||||||||||
Int("count", 12), | ||||||||||
) | ||||||||||
) | ||||||||||
assert.True(t, errors.Is(wrap2, rootErr), "errors.Is") | ||||||||||
assert.True(t, errors.Is(wrap2, wrap1), "errors.Is") | ||||||||||
Comment on lines
+41
to
+42
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. optional: assert.ErrorIs
Suggested change
|
||||||||||
|
||||||||||
enc := zapcore.NewMapObjectEncoder() | ||||||||||
Error(wrap2).AddTo(enc) | ||||||||||
assert.Equal(t, map[string]any{ | ||||||||||
"error": "wrap1: root err", | ||||||||||
"errorFields": map[string]any{ | ||||||||||
"user": "foo", | ||||||||||
"count": int64(12), | ||||||||||
}, | ||||||||||
}, enc.Fields) | ||||||||||
|
||||||||||
var ( | ||||||||||
wrap3 = fmt.Errorf("wrap3: %w", wrap2) | ||||||||||
wrap4 = WrapError(wrap3, Bool("wrap4", true)) | ||||||||||
) | ||||||||||
Error(wrap4).AddTo(enc) | ||||||||||
assert.Equal(t, map[string]any{ | ||||||||||
"error": "wrap3: wrap1: root err", | ||||||||||
"errorFields": map[string]any{ | ||||||||||
"user": "foo", | ||||||||||
"count": int64(12), | ||||||||||
"wrap4": true, | ||||||||||
}, | ||||||||||
}, enc.Fields) | ||||||||||
|
||||||||||
var ( | ||||||||||
wrap5 = fmt.Errorf("wrap5 no wrap: %v", wrap3) | ||||||||||
wrap6 = WrapError(wrap5, Bool("wrap5", true)) | ||||||||||
) | ||||||||||
Error(wrap6).AddTo(enc) | ||||||||||
assert.Equal(t, map[string]any{ | ||||||||||
"error": "wrap5 no wrap: wrap3: wrap1: root err", | ||||||||||
"errorFields": map[string]any{ | ||||||||||
"wrap5": true, | ||||||||||
}, | ||||||||||
}, enc.Fields) | ||||||||||
} | ||||||||||
|
||||||||||
func TestWrapErrorDuplicateField(t *testing.T) { | ||||||||||
var ( | ||||||||||
rootErr = errors.New("root err") | ||||||||||
wrap1 = WrapError(rootErr, String("f1", "a"), String("f2", "b")) | ||||||||||
wrap2 = WrapError(wrap1, String("f1", "c")) | ||||||||||
) | ||||||||||
enc := zapcore.NewMapObjectEncoder() | ||||||||||
Error(wrap2).AddTo(enc) | ||||||||||
assert.Equal(t, map[string]any{ | ||||||||||
"error": "root err", | ||||||||||
"errorFields": map[string]any{ | ||||||||||
// fields are added in Unwrap order, and last added field wins in the map encoder | ||||||||||
// which is the first field added. | ||||||||||
Comment on lines
+92
to
+93
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. just to do the sanity-check once again - are we sure this is okay? it feels weird. one possibly crazy idea - I guess we cannot detect a conflict somehow make it visible? Hm. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The map encoder overwrites, the JSON encoder adds the duplicate fields. This is the behaviour of This is one of the tradeoffs for performance, though there's some ideas in the issue for how we could detect this, which should apply to all cases of duplicated fields. |
||||||||||
"f1": "a", | ||||||||||
"f2": "b", | ||||||||||
}, | ||||||||||
}, enc.Fields) | ||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because the example will be used as reference, maybe we should reduce redundancy in the message here. The log message already says we're parsing a timeout, so maybe just the fields will be enough here.
Theoretically, if there was a caller to this function before the log, it would add the
parseTimeouts:
prefix, and that would also make it to the log.