runtime/loglevels.py
author Edouard Tisserant <edouard.tisserant@gmail.com>
Sat, 30 Jul 2022 00:05:51 +0200
branchwxPython4
changeset 3567 d6d9ecd07a93
parent 1973 cc7a46953471
permissions -rw-r--r--
IDE: images/icons.svg: Update logo, icon, build, clean, transfer, connect and disconnect.
#!/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"]