Skip to content

Commit

Permalink
Add default None in input parameters of the default logger definition…
Browse files Browse the repository at this point in the history
… in MicroManagerCoupling
  • Loading branch information
IshaanDesai committed Dec 30, 2024
1 parent 7b924f5 commit 411d358
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion micro_manager/micro_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(self, config_file: str) -> None:
"""
super().__init__(config_file)

self._logger = Logger(__name__, self._rank)
self._logger = Logger(__name__, None, self._rank)

self._config.set_logger(self._logger)
self._config.read_json_micro_manager()
Expand Down
2 changes: 1 addition & 1 deletion micro_manager/tools/logging_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(
name : string
Name of the logger.
log_file : string
Name of the log file (default is "micro-manager.log").
Name of the log file (default is None).
rank : int, optional
Rank of the logger (default is 0).
level : int, optional
Expand Down

0 comments on commit 411d358

Please sign in to comment.