runtime/loglevels.py
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Wed, 03 Apr 2019 06:31:34 +0000
changeset 2577 f88eef34a523
parent 1973 cc7a46953471
permissions -rw-r--r--
Fix typo in README.md

Closes #80
#!/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"]