runtime/loglevels.py
author Edouard Tisserant <edouard@beremiz.fr>
Thu, 09 Jan 2025 09:46:43 +0100 (4 months ago)
changeset 4080 803d4e64cc68
parent 1973 cc7a46953471
permissions -rw-r--r--
python runtime: fix exception when transfering files with identical content.
#!/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"]