beremiz
Clone
Summary
Browse
Changes
Graph
Fixes for wxPython-4.0.7 (ubuntu22) compatible with wxPython-4.1.x
python3
2023-04-12, Edouard Tisserant
c98646b1c981
Fixes for wxPython-4.0.7 (ubuntu22) compatible with wxPython-4.1.x
#!/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"]