runtime/loglevels.py
author Edouard Tisserant <edouard@beremiz.fr>
Thu, 25 Apr 2024 09:37:09 +0200
changeset 3934 8072072038d2
parent 1973 cc7a46953471
permissions -rw-r--r--
BACnet: Fixed grid cell choice editor. Consequence of wxPython4.
#!/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"]