We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cf60cf commit d1cc8c9Copy full SHA for d1cc8c9
Python_Engine/Python/src/python_toolkit/bhom/logging/file.py
@@ -12,7 +12,7 @@
12
13
formatter = logging.Formatter("%(message)s")
14
handler = RotatingFileHandler(
15
- BHOM_LOG_FOLDER / f"{TOOLKIT_NAME}_{datetime.now().strftime('%Y%m%d')}.log",
+ str(BHOM_LOG_FOLDER / f"{TOOLKIT_NAME}_{datetime.now().strftime('%Y%m%d')}.log"),
16
mode="a",
17
maxBytes=25 * 1024 * 1024, # 25mb max before file overwritten
18
backupCount=1,
0 commit comments