beremiz
Clone
Summary
Browse
Changes
Graph
MQTT: Fix warning when subscribing first topic from python.
16 months ago, Edouard Tisserant
089ecd14deb3
MQTT: Fix warning when subscribing first topic from python.
Ensure that message callback is already set before subscribing a topic from python.
#!/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"]