summaryrefslogtreecommitdiffstats
path: root/ipsilon/rest/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipsilon/rest/common.py')
-rw-r--r--ipsilon/rest/common.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ipsilon/rest/common.py b/ipsilon/rest/common.py
index 7baea94..904545c 100644
--- a/ipsilon/rest/common.py
+++ b/ipsilon/rest/common.py
@@ -2,6 +2,7 @@
import cherrypy
import json
+import logging
from functools import wraps
from ipsilon.util.endpoint import Endpoint
@@ -54,7 +55,8 @@ class RestPlugins(RestPage):
for plugin in self._site[facility].available:
obj = self._site[facility].available[plugin]
if hasattr(obj, 'rest'):
- cherrypy.log.error('Rest plugin: %s' % plugin)
+ cherrypy.log.error('Rest plugin: %s' % plugin,
+ severity=logging.DEBUG)
obj.rest.mount(self)
def root_with_msg(self, message=None, message_type=None, changed=None):