* Clean up tests logging This cleans up the travis logs so you can see the failures better. Older tests in tests/ would call log.SetOutput(ioutil.Discard) in a haphazard way. This add log.Discard and put an `init` function in each package's dir (no way to do this globally). The cleanup in tests/ is clear. All plugins also got this init function to have some uniformity and kill any (future) logging there in the tests as well. There is a one-off in pkg/healthcheck because that does log. Signed-off-by: Miek Gieben <miek@miek.nl> * bring back original log_test.go Signed-off-by: Miek Gieben <miek@miek.nl> * suppress logging here as well Signed-off-by: Miek Gieben <miek@miek.nl> |
||
---|---|---|
.. | ||
errors.go | ||
errors_test.go | ||
log_test.go | ||
OWNERS | ||
README.md | ||
setup.go | ||
setup_test.go |
errors
Name
errors - enable error logging.
Description
Any errors encountered during the query processing will be printed to standard output.
This plugin can only be used once per Server Block.
Syntax
errors
Examples
Use the whoami to respond to queries and Log errors to standard output.
. {
whoami
errors
}