Skip to content

Commit

Permalink
dont print errors from the gt parser to avoid large log files
Browse files Browse the repository at this point in the history
  • Loading branch information
AlyaGomaa committed Nov 7, 2024
1 parent 24b2e71 commit 1af1da4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions parsers/ground_truth.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,9 +397,9 @@ def parse_file(self, filename: str):

flow, err = self.extract_fields(line)
if not flow:
self.log(f"{err}. Skipping flow at line: ",
line_number,
error=True)
# self.log(f"{err}. Skipping flow at line: ",
# line_number,
# error=True)
continue

tw_registration_stats: dict = self.register_timewindow(
Expand Down

0 comments on commit 1af1da4

Please sign in to comment.