beremiz
Clone
Summary
Browse
Changes
Graph
Allow using one XSD based target description for many targets. Target description XSD can now use %(target_name)s to refer to target name.
2019-02-19, Edouard Tisserant
2d72d8a8d7e5
Allow using one XSD based target description for many targets. Target description XSD can now use %(target_name)s to refer to target name.
#!/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"]