We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8db4ec commit 2a67120Copy full SHA for 2a67120
1 file changed
src/utils/log/logger.py
@@ -9,7 +9,7 @@
9
class Logger:
10
"""Custom logger."""
11
12
- def __init__(self, filename: str = "sayu") -> None:
+ def __init__(self, filename: str = "log") -> None:
13
"""
14
Args:
15
filename -- filename to use.
@@ -29,7 +29,7 @@ def __init__(self, filename: str = "sayu") -> None:
29
30
self.log: logging.Logger = logging.getLogger("rich")
31
32
- BASE_PATH: Path = Path.home()/".sayu"
+ BASE_PATH: Path = Path.home()/".log"
33
if not exists(BASE_PATH):
34
try:
35
mkdir(BASE_PATH)
0 commit comments