beremiz
Clone
Summary
Browse
Changes
Graph
Merged changes from default in wxPython4 branch
wxPython4
2022-11-04, Edouard Tisserant
e0d6f5f0dcc2
Merged changes from default in wxPython4 branch
#!/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"]