Skip to content

Commit

Permalink
Revert "refactor: set LoggerConfiguration.path default value to `No…
Browse files Browse the repository at this point in the history
…ne`"

This reverts commit 40e684b.
  • Loading branch information
Ljzd-PRO committed Nov 10, 2023
1 parent 0aa2a7a commit 66f3845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ktoolbox/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class JobConfiguration(BaseModel):

class LoggerConfiguration(BaseModel):
"""Logger configuration"""
path: Optional[Path] = None
path: Optional[Path] = Path("logs")
"""Path to save logs, ``None`` for disable log file output"""
level: Union[str, int] = logging.DEBUG
"""Log filter level"""
Expand Down

0 comments on commit 66f3845

Please sign in to comment.