runtime/loglevels.py
author Edouard Tisserant <edouard.tisserant@gmail.com>
Thu, 19 Oct 2023 22:52:27 +0200
changeset 3871 5d23a47937c4
parent 1973 cc7a46953471
permissions -rw-r--r--
IDE: py3.10 related float/int fixes in debug plots
#!/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"]