beremiz
Clone
Summary
Browse
Changes
Graph
Customizable columns in VariableTables (i.e. can be monkey patched properly)
2018-07-20, Edouard Tisserant
addb6eff8d94
Customizable columns in VariableTables (i.e. can be monkey patched properly)
#!/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"]