beremiz
Clone
Summary
Browse
Changes
Graph
Moved XSLT model query python code so that XSLT part can be reused for other transformations
2019-08-09, Edouard Tisserant
3ba6a2d26507
Moved XSLT model query python code so that XSLT part can be reused for other transformations
#!/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"]