How do I change the logging format for webapps? I usually do the following in each module to make clear where log messages come from.
import logging
logging = logging.getLogger('fully.qualified.module.name')
This usually creates logs like the following.
INFO:gwf.rcm_lora_v1:protocol 1
Unfortunately the webapp log looks like this...
2017-04-24 13:27:23,883 :protocol 1
Preferably the log would include timestamps (with timezone field, i.e. +00:00) and the identifier.