Skip to content

Commit

Permalink
trigger benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinav committed Nov 19, 2021
1 parent e2d3bef commit 5ec8927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion writer.go
Expand Up @@ -71,7 +71,7 @@ func open(paths []string) ([]zapcore.WriteSyncer, func(), error) {
for _, path := range paths {
sink, err := newSink(path)
if err != nil {
openErr = multierr.Append(openErr, fmt.Errorf("couldn't open sink %q: %v", path, err))
openErr = multierr.Append(openErr, fmt.Errorf("couldn't open sink %q: %w", path, err))
continue
}
writers = append(writers, sink)
Expand Down

0 comments on commit 5ec8927

Please sign in to comment.