runtime/loglevels.py
author etisserant <edouard.tisserant@gmail.com>
Tue, 13 Sep 2022 16:32:39 +0200
changeset 3607 cfbdccad71a5
parent 1973 cc7a46953471
permissions -rw-r--r--
Merge pull request #5 from vitw/wxPython4

update installation instructions
#!/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"]