Skip to content
This repository was archived by the owner on Jul 8, 2023. It is now read-only.

Commit 726ebd8

Browse files
committed
Remove " " from log name
1 parent de7159e commit 726ebd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/utils/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def set_up_logging():
2626
ch = logging.StreamHandler()
2727
ch.setLevel(logging.DEBUG)
2828

29-
file_name = '{}_{}.log'.format(name_hash, datetime.datetime.now().strftime('%Y-%m-%d %H_%M_%S'))
29+
file_name = '{}_{}.log'.format(name_hash, datetime.datetime.now().strftime('%Y-%m-%d_%H_%M_%S'))
3030
fh = logging.FileHandler(os.path.join(logs_directory, file_name))
3131
fh.setLevel(logging.DEBUG)
3232

0 commit comments

Comments
 (0)