diff options
author | Francis Lavoie <[email protected]> | 2022-04-28 10:42:30 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-28 08:42:30 -0600 |
commit | 3017b245c9275f910dff472ee5e7729625c4f913 (patch) | |
tree | b73ba1566c960e2549baa52937cf120737f3a7bc /logging.go | |
parent | 2e4c09155a750895a306f8900a6d5f4597db5287 (diff) | |
download | caddy-3017b245c9275f910dff472ee5e7729625c4f913.tar.gz caddy-3017b245c9275f910dff472ee5e7729625c4f913.zip |
logging: Use `RedirectStdLog` to capture more stdlib logs (#4732)
* logging: Use `RedirectStdLog`
* .gitignore a file pattern that I'm constantly using for testing
Diffstat (limited to 'logging.go')
-rw-r--r-- | logging.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/logging.go b/logging.go index 129aec430..5f8ea06a9 100644 --- a/logging.go +++ b/logging.go @@ -661,9 +661,15 @@ func newDefaultProductionLog() (*defaultCustomLog, error) { cl.buildCore() + logger := zap.New(cl.core) + + // capture logs from other libraries which + // may not be using zap logging directly + _ = zap.RedirectStdLog(logger) + return &defaultCustomLog{ CustomLog: cl, - logger: zap.New(cl.core), + logger: logger, }, nil } |