runtime/loglevels.py
author Edouard Tisserant
Fri, 03 Apr 2020 09:52:57 +0200
branchsvghmi
changeset 2916 4f3b130fd197
parent 1973 cc7a46953471
permissions -rw-r--r--
SVGHMI: fix keyboard not showing
#!/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"]