runtime/loglevels.py
author Edouard Tisserant <edouard@beremiz.fr>
Wed, 16 Oct 2024 15:45:15 +0200
changeset 4048 b3ea419a4d47
parent 1973 cc7a46953471
permissions -rw-r--r--
SVGHMI: swap position and range of ForEach widget so that both range and size can be optional.
#!/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"]