runtime/loglevels.py
author Edouard Tisserant
Wed, 14 Nov 2018 14:09:18 +0100
changeset 2335 4262256e1d28
parent 1973 cc7a46953471
permissions -rw-r--r--
IDManager.py : finished selector mode.
#!/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"]