runtime/loglevels.py
author Edouard Tisserant
Fri, 06 May 2022 11:04:17 +0200
changeset 3469 97622e9560b5
parent 1973 cc7a46953471
permissions -rw-r--r--
SVGHMI: fix widget's update frequency forcing : syntax checking was enforcing unit and js code was using undefined variables
#!/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"]