runtime/loglevels.py
author Edouard Tisserant
Tue, 06 Apr 2021 16:07:56 +0200
branchsvghmi
changeset 3226 60a8531efa45
parent 1973 cc7a46953471
permissions -rw-r--r--
SVGHMI: prototype of widget interface description using SVG's desc field, added to SVGHMI's internal svg widget library.
#!/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"]