runtime/loglevels.py
author etisserant <edouard.tisserant@gmail.com>
Thu, 20 Oct 2022 18:15:31 +0200
branchwxPython4
changeset 3638 606c984a58c2
parent 1973 cc7a46953471
permissions -rw-r--r--
Update README.md

removed undue blank lines
#!/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"]