beremiz
Clone
Summary
Browse
Changes
Graph
force redraw only through EVT_PAINT event and use wxPaintDC, as described in wx documentation
2019-04-11, Edouard Tisserant
1c34bd8c5077
force redraw only through EVT_PAINT event and use wxPaintDC, as described in wx documentation
#!/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"]