runtime/loglevels.py
author Edouard Tisserant <edouard.tisserant@gmail.com>
Thu, 22 Oct 2020 22:44:29 +0200
branchsvghmi
changeset 3068 81758c94f3df
parent 1973 cc7a46953471
permissions -rw-r--r--
SVGHMI: Fix HMI_REAL support, and add a HMI_REAL use case in tests/svghmi.
#!/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"]