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
The code of initializing logging configuration in luigi neglected the standard python logging feature
defaults – Defaults to be passed to the ConfigParser can be specified in this argument.
This makes it impossible to configure logging file names by specifying a placeholder in the logging configure file. For example:
[handler_fileHandler] class=FileHandler level=DEBUG formatter=fileFormatter args=('%(logfilename)s',)
in raw python we can replace the placeholder %(logfilename)s to specific log file name like:
logging.config.fileConfig(loginipath, defaults={'logfilename': '/var/log/mylog.log'})
Paste the Luigi code for reference. /luigi/setup_logging.py
Could you please add the feature?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The code of initializing logging configuration in luigi neglected the standard python logging feature
This makes it impossible to configure logging file names by specifying a placeholder in the logging configure file.
For example:
in raw python we can replace the placeholder %(logfilename)s to specific log file name like:
Paste the Luigi code for reference.
/luigi/setup_logging.py
Could you please add the feature?
The text was updated successfully, but these errors were encountered: