Skip to content
Snippets Groups Projects
Commit 116a1f7f authored by alexey.stratulat's avatar alexey.stratulat
Browse files

[*] To simplify the output to the screen, the functions logItDebug, logItInfo, etc. are added.

parent 1a07d9fc
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,26 @@ def configGetItem(section_path, item_name):
return res
def configGetItemDefault(section_path, item_name, default):
return libdap_python_module.configGetItemDefault(section_path, item_name, default)
def logItDebug(text):
logIt(LogLevel.L_DEBUG, text)
def logItInfo(text):
logIt(LogLevel.L_INFO, text)
def logItNotice(text):
logIt(LogLevel.L_NOTICE, text)
def logItMSG(text):
logIt(LogLevel.L_MSG, text)
def logItDap(text):
logIt(LogLevel.L_DAP, text)
def logItWarning(text):
logIt(LogLevel.L_WARNING, text)
def logItAtt(text):
logIt(LogLevel.L_ATT, text)
def logItError(text):
logIt(LogLevel.L_ERROR, text)
def logItCritical(text):
logIt(LogLevel.L_CRITICAL, text)
def logItTotal(text):
logIt(LogLevel.L_TOTAL, text)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment