Module: check_mk
Branch: master
Commit: 69856defc6f5633406ee3bbacf2bbfcd69e25eb8
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=69856defc6f563…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Fri Apr 17 11:21:00 2015 +0200
Fixed exception when trying to use the new web logging
---
web/htdocs/html_mod_python.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/htdocs/html_mod_python.py b/web/htdocs/html_mod_python.py
index 89b937f..5e4a64d 100644
--- a/web/htdocs/html_mod_python.py
+++ b/web/htdocs/html_mod_python.py
@@ -137,7 +137,7 @@ class html_mod_python(htmllib.html):
return (omd_mode, omd_site)
def log(self, msg):
- from lib import logger
+ from lib import logger, LOG_NOTICE
logger(LOG_NOTICE, msg)
def http_redirect(self, url):