beremiz
Clone
Summary
Browse
Changes
Graph
IDE: Fix logging of external process execution time so that it is visible on windows as well.
mc9_backport_2
2021-03-02, Edouard Tisserant
706aef3864a5
IDE: Fix logging of external process execution time so that it is visible on windows as well.
#!/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"]