runtime/loglevels.py
author Edouard Tisserant <edouard@beremiz.fr>
Thu, 07 Mar 2024 16:37:02 +0100
changeset 3905 d47fe28d799a
parent 1973 cc7a46953471
permissions -rw-r--r--
eRPC Server: fix exception at disconnect and reconnecting
#!/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"]