make value of disabled level higher
so that no other log has higher priority Signed-off-by: Soumik Dutta <shalearkane@gmail.com>
This commit is contained in:
parent
99473c30a8
commit
6a2eb1f157
2 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ def initialize_monitor(hook_config, config_filename, monitoring_log_level, dry_r
|
||||||
we can send them all to Healthchecks upon a finish or failure state. But skip this if the
|
we can send them all to Healthchecks upon a finish or failure state. But skip this if the
|
||||||
"send_logs" option is false.
|
"send_logs" option is false.
|
||||||
'''
|
'''
|
||||||
if hook_config.get('send_logs') is False or monitoring_log_level == logging.DISABLED:
|
if hook_config.get('send_logs') is False:
|
||||||
return
|
return
|
||||||
|
|
||||||
ping_body_limit = max(
|
ping_body_limit = max(
|
||||||
|
|
|
@ -141,7 +141,7 @@ def add_logging_level(level_name, level_number):
|
||||||
|
|
||||||
|
|
||||||
ANSWER = logging.WARN - 5
|
ANSWER = logging.WARN - 5
|
||||||
DISABLED = logging.DEBUG - 5
|
DISABLED = logging.CRITICAL + 10
|
||||||
|
|
||||||
|
|
||||||
def add_custom_log_levels(): # pragma: no cover
|
def add_custom_log_levels(): # pragma: no cover
|
||||||
|
|
Loading…
Reference in a new issue