Skip to content

Commit c5a77fe

Browse files
Remove info being logs as warning. (#79)
* Remove info being logs as warning * Fix trace file name in pipeline --------- Signed-off-by: ClemensLinnhoff <[email protected]>
1 parent 160aea1 commit c5a77fe

4 files changed

+2
-4
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ jobs:
7878
run: |
7979
source .venv/bin/activate
8080
pip install .
81-
osivalidator --data data/20240604T065310Z_sv_370_244_20_generic_valid_sensor_view.osi -r rules
82-
osivalidator --data data/20240604T065310Z_sv_370_244_20_generic_valid_sensor_view.osi -r rules --parallel
81+
osivalidator --data data/20240618T122540Z_sv_370_244_20_minimal_valid_example.osi -r rules
82+
osivalidator --data data/20240618T122540Z_sv_370_244_20_minimal_valid_example.osi -r rules --parallel
Binary file not shown.
Binary file not shown.

osivalidator/osi_validator_logger.py

-2
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,6 @@ def error(self, timestamp, msg, *args, **kwargs):
147147
@log
148148
def info(self, timestamp, msg, *args, **kwargs):
149149
"""Wrapper for python info logger"""
150-
if timestamp:
151-
self.log_messages[timestamp].append((20, timestamp, msg))
152150
if kwargs.get("pass_to_logger"):
153151
return self.logger.info(msg, *args, **kwargs)
154152
return 0

0 commit comments

Comments
 (0)