Skip to content

Commit

Permalink
fix(events): wrong mapping of normal events
Browse files Browse the repository at this point in the history
all normal event were written into the warning log file
at least the counting was correct
  • Loading branch information
fruch authored and Bentsi committed Feb 19, 2020
1 parent 75a8654 commit 48ba3e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdcm/sct_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ def __init__(self, log_dir):
Severity.CRITICAL: self.critical_events_filename,
Severity.ERROR: self.error_events_filename,
Severity.WARNING: self.warning_events_filename,
Severity.NORMAL: self.warning_events_filename,
Severity.NORMAL: self.normal_events_filename,
}
self.level_summary = collections.defaultdict(int)

Expand Down

0 comments on commit 48ba3e6

Please sign in to comment.