beremiz
Clone
Summary
Browse
Changes
Graph
replaced depreciated function
python3
2022-10-31, GP Orcullo
c032fff8af32
replaced depreciated function
cmp is not used for sorting
#!/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"]