runtime/loglevels.py
author Edouard Tisserant
Mon, 20 Jun 2022 09:19:56 +0200
changeset 3518 c663d1f9f03b
parent 1973 cc7a46953471
permissions -rw-r--r--
SVGHMI: fix Switch widget so that order of choices elements is preserved across detaching and re-attaching.
#!/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"]