beremiz
Clone
Summary
Browse
Changes
Graph
Modbus: fixed typo in ctype typing.
svghmi
2020-09-15, Edouard Tisserant
6dd617cc9c05
Modbus: fixed typo in ctype typing.
#!/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"]