Skip to content

Commit

Permalink
hard-code level to info
Browse files Browse the repository at this point in the history
  • Loading branch information
EricPedley committed Jun 25, 2024
1 parent 5cbb13d commit 25caf49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uavf_2024/async_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def __init__(
self.log(f"Finished intializing RosLoggingProvider. Logging to {self._logs_dir}")

def log(self, message, level = logging.INFO):
self.logger.log(message, level)
self.logger.info(message)

def set_log_dir(self, new_dir: str | os.PathLike | Path):
self._logs_dir = Path(new_dir)
Expand Down

0 comments on commit 25caf49

Please sign in to comment.