beremiz
Clone
Summary
Browse
Changes
Graph
More explicit default value for generic makefile target command. Assume Makfile is located in project_files
wxPython4
2023-02-14, Edouard Tisserant
58c74d098f09
More explicit default value for generic makefile target command. Assume Makfile is located in project_files
#!/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"]