beremiz
Clone
Summary
Browse
Changes
Graph
IDE/windows: Avoid exception on quit caused by runtime being killed without disconnecting.
wxPython4
2021-09-10, Edouard Tisserant
2c0511479b18
IDE/windows: Avoid exception on quit caused by runtime being killed without disconnecting.
#!/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"]