Skip to content

Commit 2a67120

Browse files
committed
rename the folder and the file log name
1 parent a8db4ec commit 2a67120

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/utils/log/logger.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class Logger:
1010
"""Custom logger."""
1111

12-
def __init__(self, filename: str = "sayu") -> None:
12+
def __init__(self, filename: str = "log") -> None:
1313
"""
1414
Args:
1515
filename -- filename to use.
@@ -29,7 +29,7 @@ def __init__(self, filename: str = "sayu") -> None:
2929

3030
self.log: logging.Logger = logging.getLogger("rich")
3131

32-
BASE_PATH: Path = Path.home()/".sayu"
32+
BASE_PATH: Path = Path.home()/".log"
3333
if not exists(BASE_PATH):
3434
try:
3535
mkdir(BASE_PATH)

0 commit comments

Comments
 (0)