runtime/loglevels.py
author Edouard Tisserant <edouard@beremiz.fr>
Thu, 19 Sep 2024 12:06:53 +0200
changeset 4016 9e4a3a3ea5c0
parent 1973 cc7a46953471
permissions -rw-r--r--
MQTT: fix invocation of json_scanf (use pointers, not values...)
#!/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"]