beremiz
Clone
Summary
Browse
Changes
Graph
MQTT: Add SanitizeTopic to allow customization of mqtt topic according to configuration
14 months ago, Edouard Tisserant
bcfc55f4847a
MQTT: Add SanitizeTopic to allow customization of mqtt topic according to configuration
#!/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"]