beremiz
Clone
Summary
Browse
Changes
Graph
Named runtime's threads to ease debugging
2019-04-17, Edouard Tisserant
0e20a0d48fae
Named runtime's threads to ease debugging
#!/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"]