runtime/loglevels.py
author Edouard Tisserant
Tue, 26 Jan 2021 11:14:22 +0100
branchsvghmi
changeset 3118 e704b0487515
parent 1973 cc7a46953471
permissions -rw-r--r--
SVGHMI : removed support for changing keyboard position and showing at user defined location. Feature was problematic in many respect.
#!/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"]