We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The logFile parameter is set to "./StORMlog.txt", several places. Looks like this:
logFile
"./StORMlog.txt"
if StORMdebug { LogFile.info("Error msg: \(errorMsg)", logFile: "./StORMlog.txt") } if StORMdebug { LogFile.info("Postgres conn state: ok", logFile: "./StORMlog.txt") } LogFile.error("Error msg: \(error)", logFile: "./StORMlog.txt")
This polutes the current working directory. I prefer logfiles gets outputted to the log dir.
Perhaps use a shared logging class.
Same issue with Mysql + Sqlite repositories.
The text was updated successfully, but these errors were encountered:
+1 👍
Sorry, something went wrong.
No branches or pull requests
The
logFile
parameter is set to"./StORMlog.txt"
, several places. Looks like this:This polutes the current working directory. I prefer logfiles gets outputted to the log dir.
Perhaps use a shared logging class.
Same issue with Mysql + Sqlite repositories.
The text was updated successfully, but these errors were encountered: