Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move setting of Filter into code. | Erik Johnston | 2020-08-11 | 1 | -6/+0 |
| | | | | | | | | | | | | | | We do this to prevent foot guns. The default config uses a MemoryFilter, but users are free to change to logging to files directly. If they do then they have to ensure to set the `filters: [context]` on the right handler, otherwise records get written with the wrong context. Instead we move the logic to happen when we generate a record, which is when we *log* rather than *handle*. (It's possible to add filters to loggers in the config, however they don't apply to descendant loggers and so they have to be manually set on *every* logger used in the code base) | ||||
* | Fix logging config for the docker image (#6197) | Richard van der Hoff | 2019-10-18 | 1 | -0/+2 |
| | | | | | | | | Turns out that loggers that are instantiated before the config is loaded get turned off. Also bring the logging config that is generated by --generate-config into line. Fixes #6194. | ||||
* | Add missing space in default logging file format generated by the Docker ↵ | Slavi Pantaleev | 2019-07-12 | 1 | -1/+1 |
| | | | | | | | image (#5620) This adds a missing space, without which log lines appear uglier. Signed-off-by: Slavi Pantaleev <slavi@devture.com> | ||||
* | Move logging utilities out of the side drawer of util/ and into logging/ (#5606) | Amber Brown | 2019-07-04 | 1 | -1/+1 |
| | |||||
* | Increase default log level for docker image to INFO. (#5547) | Richard van der Hoff | 2019-06-25 | 1 | -5/+2 |
| | | | Fixes #3370. | ||||
* | Refactor docker locations and README. | Michael Kaye | 2018-08-02 | 1 | -0/+29 |
This addresses #3224 |