Skip to content

Commit

Permalink
fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
emcek committed Jan 31, 2025
1 parent 3a9bca9 commit d9eec45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dcspy/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ def config_logger(logger: Logger, verbose: bool = False) -> None:
"""
Configure global logger add handlers and set formatters.
:param logger:
:param verbose: turn on/off verbose mode
:param logger: Logger instance
:param verbose: Turn on/off verbose mode
"""
logger.setLevel(DEBUG)
file_hand = RotatingFileHandler(filename=Path(gettempdir()) / 'dcspy.log', mode='a', encoding='utf-8', maxBytes=5 * 1024 * 1024, backupCount=1)
Expand Down

0 comments on commit d9eec45

Please sign in to comment.