runtime/loglevels.py
author Edouard Tisserant <edouard.tisserant@gmail.com>
Fri, 11 Nov 2022 08:26:15 +0100
branchwxPython4
changeset 3673 6a04e7a90ceb
parent 1973 cc7a46953471
permissions -rw-r--r--
Tests: Add project for OPC-UA server browsing and variable picking UI test
#!/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"]