runtime/loglevels.py
author Edouard Tisserant <edouard.tisserant@gmail.com>
Sat, 09 Dec 2023 01:03:43 +0100
changeset 3883 a6e7dd8bac36
parent 1973 cc7a46953471
permissions -rw-r--r--
Fix blind replace ('text' into 'str') from py3 port
#!/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"]