Does anyone know if there is a way to use a variable in the setlevel() function of Python's Logging module?
At the moment I am using this:
Log = logging.getLogger('myLogger')
Log.setLevel(logging.DEBUG)
But I'd like to have this:
Log = logging.getLogger('myLogger')
levels = {'CRITICAL' : logging.critical,
'ERROR' : logging.error,
'WARNING' : logging.warning,
'INFO' : logging.info,
'DEBUG' : logging.debug
}
level = levels['INFO']
Log.setLevel(level)
But it doesn't seem to work - it just doesn't log anything.
I'm doing this so that I can set the logging level for a whole bunch of scripts from a variable in a single config file.
ERROR: logging.ERROR
etc – Perilous