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