runtime/loglevels.py
author Edouard Tisserant
Tue, 14 Aug 2018 13:10:15 +0200
changeset 2268 e6c9a52d3877
parent 1973 cc7a46953471
permissions -rw-r--r--
BACnet : Fixed missing header include in server.c introduced in 37ef7a3c6b8b
#!/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"]