runtime/loglevels.py
author Edouard Tisserant
Thu, 17 May 2018 09:33:14 +0200
branch#2476
changeset 2009 00faf9279dc0
parent 1902 2b7e2db31d81
child 1973 cc7a46953471
permissions -rw-r--r--
close branch #2476 - URI dialog fixed
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# See COPYING.Runtime file for copyrights details.

LogLevels = ["CRITICAL", "WARNING", "INFO", "DEBUG"]
LogLevelsCount = len(LogLevels)
LogLevelsDict = dict(zip(LogLevels, range(LogLevelsCount)))
LogLevelsDefault = LogLevelsDict["DEBUG"]