logger_file_backend
logger_file_backend copied to clipboard
Thanks for this very useful library! As it currently stands, all the usage related documentation is provided in the README file and none of that is reflected in hexdocs. It...
I am not sure whether this is an issue or a question. Below is my configuration which works fine: ``` config :logger, backends: [{LoggerFileBackend, :error_log}] ``` Now I want to...
I was responding to a question someone had about this package, and I noticed that you're using the `:logger` application configuration to hold configuration specific to this package. You should...
If you have two or more (phoenix) applications which log to the same file, where would you put the rotate specifications in both the config (not DRY), or put it...
Proposal to fix #82 Please consider applying
Hi! I have a case to log messages exactly of the specified level. Here https://github.com/onkel-dirtus/logger_file_backend/blob/master/lib/logger_file_backend.ex#L37 the condition allows messages of the specified level plus more serious ones. Wonder if it's...
Hi, just to mention that rotation facility is already implemented in 0.0.14, but not documented. The configuration should be like: ``` config :logger, :debug, path: "/path/to/debug.log", level: :debug, rotate: %{max_bytes:...