Edouard@592: #!/usr/bin/env python Edouard@592: # -*- coding: utf-8 -*- andrej@1571: andrej@1667: # See COPYING.Runtime file for copyrights details. Edouard@1075: andrej@1740: LogLevels = ["CRITICAL", "WARNING", "INFO", "DEBUG"] Edouard@917: LogLevelsCount = len(LogLevels) andrej@1740: LogLevelsDict = dict(zip(LogLevels, range(LogLevelsCount))) Edouard@917: LogLevelsDefault = LogLevelsDict["DEBUG"]