beremiz
Clone
Summary
Browse
Changes
Graph
Fix compilation warning/error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]
2018-06-18, Andrey Skvortsov
b7d803fc44db
Fix compilation warning/error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]
#!/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"]