runtime/loglevels.py
author dporopat <denis.poropat@smarteh.si>
Tue, 14 Aug 2018 11:14:20 +0200
changeset 2266 ed415982a9aa
parent 1973 cc7a46953471
permissions -rw-r--r--
NevowServer : Added minimalist css style customization and a link to go to settings page and back
#!/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"]