added hexstring

This commit is contained in:
Rafael.Timmerberg 2013-10-10 22:24:05 +02:00
commit 14ad51741e
2 changed files with 11 additions and 7 deletions

View file

@ -67,9 +67,9 @@ def setupLogging(logfile="./log/linspector.log", logLevel=logging.ERROR, logfile
if not path.exists(path.dirname(logfile)):
os.makedirs(path.dirname(logfile))
logging.basicConfig(level=logging.CRITICAL)
logging.basicConfig(level=logging.WARNING)
log = logging.getLogger(__name__)
log.setLevel(logging.DEBUG)
#log.setLevel(logging.ERROR)
consoleHandler = logging.StreamHandler()
consoleHandler.setLevel(logLevel)