beremiz
Clone
Summary
Browse
Changes
Graph
Runtime: Fix PLC python thread crash in case of exception in PostStart customization hook.
2022-08-02, Edouard Tisserant
d74eb1be6abe
Runtime: Fix PLC python thread crash in case of exception in PostStart customization hook.
#!/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"]