summaryrefslogtreecommitdiffstats
path: root/vendor/go.uber.org/zap/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/go.uber.org/zap/config.go')
-rw-r--r--vendor/go.uber.org/zap/config.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/go.uber.org/zap/config.go b/vendor/go.uber.org/zap/config.go
index dae130303..6fe17d9e0 100644
--- a/vendor/go.uber.org/zap/config.go
+++ b/vendor/go.uber.org/zap/config.go
@@ -74,10 +74,10 @@ type Config struct {
// EncoderConfig sets options for the chosen encoder. See
// zapcore.EncoderConfig for details.
EncoderConfig zapcore.EncoderConfig `json:"encoderConfig" yaml:"encoderConfig"`
- // OutputPaths is a list of paths to write logging output to. See Open for
- // details.
+ // OutputPaths is a list of URLs or file paths to write logging output to.
+ // See Open for details.
OutputPaths []string `json:"outputPaths" yaml:"outputPaths"`
- // ErrorOutputPaths is a list of paths to write internal logger errors to.
+ // ErrorOutputPaths is a list of URLs to write internal logger errors to.
// The default is standard error.
//
// Note that this setting only affects internal errors; for sample code that