Remove non-working ini logging config

This commit is contained in:
2022-10-29 18:24:36 +02:00
parent 17c88320ed
commit bc50873f1e
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ def SetupLogging(Level):
def ConfigLogging(Level):
Num = DefConf['Logging']
if Level:
if type(Level) == str:
if Level.isdecimal():
Num = int(Level)
else: