Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-16 | [logger] Store proxy config in logger ets table | Siri Hansen | |
This is to ensure that logger_proxy gets the same config after a restart. | |||
2019-01-16 | [logger] Add tests for logger_proxy | Siri Hansen | |
2018-07-13 | [logger] Allow setting kernel parameter 'logger_level' to 'all' | Siri Hansen | |
2018-06-14 | [logger] Fix failing tests | Peter Andersson | |
2018-06-12 | [logger] Remove some compiler warnings in test suites | Siri Hansen | |
2018-06-11 | [logger] Move the disk log options to the handler config map | Peter Andersson | |
Conflicts: lib/kernel/src/logger_disk_log_h.erl | |||
2018-06-11 | [logger] Change default primary log level to 'notice' | Siri Hansen | |
Log events issued via error_logger:info_msg or error_logger:info_report are now forwarded to Logger with level 'notice' instead of 'info'. Log events issued by gen_* behaviours are also changed from level 'info' to level 'notice'. Progress reports are still 'info', and can therefore easily be included/excluded by changing the primary log level. By default, they are not logged. | |||
2018-06-08 | [logger] Update return values from get_handler_config/0,1 and get_config/0 | Siri Hansen | |
Module and Id are now always included as fields in Config, so these are no longer returned as separate elements. | |||
2018-06-08 | [logger] Change name of handler specific config field from ?MODULE to 'config' | Siri Hansen | |
And add field 'module' in handler config. | |||
2018-06-08 | [logger] Change concept of 'global' configuration to 'primary' configuration | Siri Hansen | |
Function names changed: get/set/update_logger_config -> get/set/update_primary_config add/remove_logger_filter -> add/remove_primary_filter | |||
2018-06-08 | [logger] Add configurable log levels 'all' and 'none' | Siri Hansen | |
New default for handlers is 'all'. | |||
2018-06-08 | [logger] Change base OTP domain from [beam,erlang,otp] to [otp] | Siri Hansen | |
2018-06-08 | [logger] Change handler config to accept all levels by default | Siri Hansen | |
2018-06-08 | [logger] Change names of sync functions in built-in handlers | Siri Hansen | |
logger_std_h:filesync/1 -----> logger_std_h:sync/1 logger_disk_log_h:disk_log_sync/1 -----> logger_disk_log_h:sync/1 | |||
2018-05-23 | Rename module logger_simple to logger_simple_h | Siri Hansen | |
Also, change HandlerId from logger_simple to simple. | |||
2018-05-23 | Change env var logger_log_progress to logger_progress_reports | Siri Hansen | |
2018-05-23 | Change handler id for sasl handler from sasl_h to sasl | Siri Hansen | |
2018-05-23 | Change Compare parameter to logger_filters:domain/2 | Siri Hansen | |
This configuration option has been removed. logger_formatter will read the utc_log configuration parameter and format the timestamp accordingly. | |||
2018-05-23 | Set legacy_header=true for kernel's default handler only | Siri Hansen | |
2018-05-21 | kernel: Make all handler callbacks not block logger | Lukas Larsson | |
2018-05-21 | logger: Rework configuration of logger | Lukas Larsson | |
Most logger configuration that was possible through kernel application variables have been moved into a common 'logger' application environment in kernel. Now all the configuration possible through the logger API can be done as sys config. The handler started by kernel has been renamed to 'default' instead of logger_std_h. There is a new logger:setup_handlers/1 function that given an application name can be used to setup handlers in other applications. | |||
2018-04-26 | Add logger | Siri Hansen | |