beremiz
Clone
Summary
Browse
Changes
Graph
#2486 ExposedCalls with register options as a dictionary.
#2486
2018-05-18, dporopat
1e397afc36a9
#2486 ExposedCalls with register options as a dictionary.
#!/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"]