beremiz
Clone
Summary
Browse
Changes
Graph
Runtime: Better handling of nested strings in spawn_subprocess commandline parsing
svghmi
2021-07-29, Edouard Tisserant
d2b0c768755d
Runtime: Better handling of nested strings in spawn_subprocess commandline parsing
#!/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"]