aboutsummaryrefslogtreecommitdiff
path: root/plugin/errors/errors.go (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-07-09add configurable log level to errors plugin (#4718)Gravatar Ondřej Benkovský 1-5/+6
Automatically submitted.
2019-03-07plugin/errors: remove cLogger and eLogger (#2657)Gravatar Ruslan Drozhdzh 1-13/+4
2019-01-29some typo fix (#2512)Gravatar Ye Ben 1-1/+1
Signed-off-by: yeya24 <ben.ye@daocloud.io>
2018-10-27plugin/errors: 'consolidate' option (#2192)Gravatar Ruslan Drozhdzh 1-5/+88
- see more details at https://github.com/infobloxopen/coredns-plugin-errors/pull/3
2018-05-09plugin/errors: remove panic/recover (#1777)Gravatar Miek Gieben 1-53/+3
Remove panic/recover and also use pkg/log to print the error. This brings some consistency into the logging. Fixes #1776
2018-04-22all: fix plugin import ordering (#1717)Gravatar Miek Gieben 1-2/+1
Got a bit messed up with stb lib "context" usage.
2018-04-20global: move to context (#1699)Gravatar Miek Gieben 1-1/+2
* global: move to context Move from golang.org/x/net/context to std lib's context. Change done with: for i in $(grep -l '/context' **/*.go); do sed -e 's|golang.org/x/net/context|context|' -i $i; echo $i; done for i in **/*.go; do goimports -w $i; done * drop from dns.pb.go as well
2017-09-14Remove the word middleware (#1067)Gravatar Miek Gieben 1-0/+79
* Rename middleware to plugin first pass; mostly used 'sed', few spots where I manually changed text. This still builds a coredns binary. * fmt error * Rename AddMiddleware to AddPlugin * Readd AddMiddleware to remain backwards compat