runtime/loglevels.py
author Edouard Tisserant <edouard@beremiz.fr>
Tue, 18 Feb 2025 16:22:54 +0100 (2 months ago)
changeset 4113 fe41562050ed
parent 1973 cc7a46953471
permissions -rw-r--r--
WAMP: enable TLS support. Add web settings for hostname verification and server certificate.
#!/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"]