runtime/loglevels.py
author Edouard Tisserant <edouard@beremiz.fr>
Tue, 21 Jan 2025 16:28:43 +0100 (3 months ago)
changeset 4099 97e93962be0c
parent 1973 cc7a46953471
permissions -rw-r--r--
MQTT: fix non reconnecting python topics. WIP
#!/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"]