beremiz
Clone
Summary
Browse
Changes
Graph
runtime: make standard output more silent.
18 months ago, Edouard Tisserant
d0be57df5f8d
runtime: make standard output more silent.
#!/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"]