runtime/loglevels.py
author Edouard Tisserant
Fri, 15 Mar 2019 14:11:49 +0100
branchsearch_in_CTN
changeset 2523 aa7f138648f3
parent 1973 cc7a46953471
permissions -rw-r--r--
WIP adding searching capabilities in python files:
- Added recursive Search capability to config tree nodes
- Added stub search to code editors, for test
#!/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"]