runtime/loglevels.py
author Edouard Tisserant
Tue, 19 Oct 2021 09:41:48 +0200
changeset 3341 dce1d5413310
parent 1973 cc7a46953471
permissions -rw-r--r--
SVGHMI: force MaxConnections sum back to zero, preventing it to grow indefinitely on each build.
#!/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"]