beremiz
Clone
Summary
Browse
Changes
Graph
modbus plugin: add/fix comments
2020-12-25, Mario de Sousa
b3b6991f1cb6
modbus plugin: add/fix comments
#!/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"]