runtime/loglevels.py
author Edouard Tisserant
Thu, 10 May 2018 08:33:50 +0200
changeset 2004 28af541d776b
parent 1973 cc7a46953471
permissions -rw-r--r--
Allow deleting configuration tree node with no corresponding directory in project tree
#!/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"]