runtime/loglevels.py
author Edouard Tisserant <edouard.tisserant@gmail.com>
Thu, 20 Jul 2023 16:16:05 +0200
changeset 3823 a95b5ee1a0ea
parent 1973 cc7a46953471
permissions -rw-r--r--
Runtime: py3 fix forcing of STRING
#!/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"]