Btw, I then have a follow up question, in case somebody has the answer off the cuff:
In case I want to separate my own logging inside my tasks, by declaring another logger in the config file, where and how do I declare that one?
My initial guess would be to do, in a super-class that my task classes derive from, in the constructor, like this:
class MyMetaTask(luigi.Task):
def __init__():
self.log = logger.getLogger('my-workflow-logger')
... but if I recall correctly, it is not adviceable to override the constructor of luigi.Task? If so, the question remains, where to initialize my own logger for use inside my own application code in my tasks?
BR
// Samuel