beremiz
Clone
Summary
Browse
Changes
Graph
runtime web settings: fix wrong declaration of ISettings, add missing entries in WAMP config.
15 months ago, Edouard Tisserant
3dbbf5f237fb
runtime web settings: fix wrong declaration of ISettings, add missing entries in WAMP config.
#!/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"]