beremiz
Clone
Summary
Browse
Changes
Graph
Fixed two exceptions happening when interacting with viewer(s) in debug mode, when debug data is still not initialized.
2021-10-06, Edouard Tisserant
dd49e4055a10
Fixed two exceptions happening when interacting with viewer(s) in debug mode, when debug data is still not initialized.
#!/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"]