beremiz
Clone
Summary
Browse
Changes
Graph
Add small contributing document with information about codestyle checking
2018-06-15, Andrey Skvortsov
439fc5d13c41
Add small contributing document with information about codestyle checking
#!/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"]