Replies: 2 comments 2 replies
-
Change the name / add a path to this line: This ultimately uses Python's open() built-in, which is OS agnostic. So something like logFileName = "C:\logfiles\Spam_Log_" + datetime.now().strftime("%Y-%m-%d_%H-%M-%S" + ".rtf") for Windows or logFileName = "/home/{YourUsername}/logfiles/Spam_Log_" + datetime.now().strftime("%Y-%m-%d_%H-%M-%S" + ".rtf") for Linux/MacOS should be fine. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Added this as a config value in #226 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How can I change where the log files are stored?
Beta Was this translation helpful? Give feedback.
All reactions