The logFile parameter is set to "./StORMlog.txt", several places. Looks like this:
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.