beremiz
Clone
Summary
Browse
Changes
Graph
Merged default in wxPython4, include runtimeLists
wxPython4
2022-01-16, Edouard Tisserant
fdc12f7d27c8
Merged default in wxPython4, include runtimeLists
#!/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"]