runtime/loglevels.py
author Edouard Tisserant <edouard.tisserant@gmail.com>
Fri, 24 Nov 2023 14:47:14 +0100
changeset 3877 ecb947e5bbb4
parent 1973 cc7a46953471
permissions -rw-r--r--
SVGHMI: fix JS error loading empty single page

svg:svg tag should not be considered as a detachable group,
so filter only svg:g elements
#!/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"]