beremiz
Clone
Summary
Browse
Changes
Graph
C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
2024-05-11, Edouard Tisserant
934bd46a7500
C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
#!/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"]