beremiz
Clone
Summary
Browse
Changes
Graph
Add copyright headers to retain implementation for GNU/Linux and Win32
2018-06-07, Andrey Skvortsov
bd0d13d10b8e
Add copyright headers to retain implementation for GNU/Linux and Win32
#!/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"]