Skip to content

Commit

Permalink
Save changes on Wed Apr 10 12:48:46 WIB 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
goFrendiAsgard committed Apr 10, 2024
1 parent f16ef7e commit 2b5072b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zrb_noto/log/_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from zrb.helper.accessories.color import colored

from .._config import CURRENT_TIME, LOG_DIR_PATH
from .._config import CURRENT_TIME, LOG_ABS_DIR_PATH

_STATUS_COLOR_MAP = {
"START": "cyan",
Expand All @@ -20,7 +20,7 @@ def get_log_file_name(current_time: datetime = CURRENT_TIME) -> str:
month = current_time.strftime("%m")
date = current_time.strftime("%d")
return os.path.join(
LOG_DIR_PATH, f"{year}", f"{year}-{month}", f"{year}-{month}-{date}.md"
LOG_ABS_DIR_PATH, f"{year}", f"{year}-{month}", f"{year}-{month}-{date}.md"
)


Expand Down

0 comments on commit 2b5072b

Please sign in to comment.