runtime/loglevels.py
author Edouard Tisserant <edouard.tisserant@gmail.com>
Thu, 28 Sep 2023 18:39:19 +0200
changeset 3848 91da73c3df61
parent 1973 cc7a46953471
permissions -rw-r--r--
Addapt to Py3.11.5 in Stunnel.py
b2a_hqx is now deprecated, base64 should bring comparable results
#!/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"]