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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So, The Logger.instance() is able to receive an optional param of log_dir. The problem is that in the code you can find those lines:
self.__log_dir = log_dir if self.__log_dir is None: self.__LOG_DIR = self.__app_dirs.logs() AppDirs.mkdir(self.__LOG_DIR)
While I believe it should be:
self.__log_dir = log_dir if self.__log_dir is None: self.__LOG_DIR = self.__app_dirs.logs() else: self.__LOG_DIR = self.__log_dir AppDirs.mkdir(self.__LOG_DIR)
The text was updated successfully, but these errors were encountered:
feel free to create a pull request for this, look like a simple change :)
Sorry, something went wrong.
No branches or pull requests
So,
The Logger.instance() is able to receive an optional param of log_dir.
The problem is that in the code you can find those lines:
While I believe it should be:
The text was updated successfully, but these errors were encountered: