beremiz
Clone
Summary
Browse
Changes
Graph
SVGHMI: prevent man-made memory leak by limiting back button history items count to 42
svghmi
2020-03-30, Edouard Tisserant
3d7e3866cc51
SVGHMI: prevent man-made memory leak by limiting back button history items count to 42
#!/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"]