beremiz
Clone
Summary
Browse
Changes
Graph
WAMP: code rework and other fixes in non-executed error code paths. Should have no side effects.
14 months ago, Edouard Tisserant
c84e1b8096c7
WAMP: code rework and other fixes in non-executed error code paths. Should have no side effects.
#!/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"]