Skip to content

Commit

Permalink
Fix invalid logging call
Browse files Browse the repository at this point in the history
  • Loading branch information
REDxEYE committed Jan 4, 2023
1 parent a88584e commit 0022fe1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/utils/gameinfo_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
log_manager = SLoggingManager()
logger = log_manager.get_logger('GameInfoParser')


class GameInfoParser:
class HiddenMaps:
def __init__(self, raw_data):
Expand Down Expand Up @@ -99,7 +100,7 @@ def all_paths(self) -> List[Path]:
else:
paths.append(Path(path))
except Exception as e:
logger.exception()
logger.exception("failed to parse path", e)
return paths

@property
Expand Down

0 comments on commit 0022fe1

Please sign in to comment.