diff options
author | Matthew Holt <[email protected]> | 2019-12-12 14:31:20 -0700 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2019-12-12 14:31:20 -0700 |
commit | 87b6cf470baacd659cd20815de2804ae4a31df7f (patch) | |
tree | 2faea4d119909790d0b1a489c0ea46b34f44dd52 /logging.go | |
parent | f935458e3e30a8d9f47f37ad35fe9c546b841fa3 (diff) | |
download | caddy-87b6cf470baacd659cd20815de2804ae4a31df7f.tar.gz caddy-87b6cf470baacd659cd20815de2804ae4a31df7f.zip |
Minor improvements; comments and shorter placeholders & module IDs
Diffstat (limited to 'logging.go')
-rw-r--r-- | logging.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/logging.go b/logging.go index 3fdd644a5..0b7d9e42b 100644 --- a/logging.go +++ b/logging.go @@ -561,10 +561,10 @@ type LogSampling struct { } type ( - // StdoutWriter can write logs to stdout. + // StdoutWriter writes logs to standard out. StdoutWriter struct{} - // StderrWriter can write logs to stdout. + // StderrWriter writes logs to standard error. StderrWriter struct{} // DiscardWriter discards all writes. |