In commit
aa266a28, we removed the logging configuration for the
'parsearchive' tool because it was using the same configuration as
'parsemail' and could send an email to administrators for ERROR logs.
While we shouldn't be doing that, we should be configuring _some_ kind
of logging.
Signed-off-by: Stephen Finucane <stephen@that.guru>
'level': 'WARNING',
'propagate': False,
},
+ 'patchwork.management.commands.parsearchive': {
+ 'handlers': ['console'],
+ 'level': 'WARNING',
+ 'propagate': True,
+ },
'patchwork.management.commands.parsemail': {
'handlers': ['console', 'mail_admins'],
'level': 'WARNING',