beremiz
Clone
Summary
Browse
Changes
Graph
Tests: use script rather than alias so that bash doesn't need to be interactive shell with a TTY
2022-05-16, Edouard Tisserant
2c712b8c736f
Tests: use script rather than alias so that bash doesn't need to be interactive shell with a TTY
#!/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"]