##// END OF EJS Templates
channelstream: fix incorrect log.exception usage.
marcink -
r1277:5d54091a default
parent child Browse files
Show More
@@ -62,7 +62,7 b' class ChannelstreamView(object):'
62 registry = request.registry
62 registry = request.registry
63 self.channelstream_config = registry.rhodecode_plugins['channelstream']
63 self.channelstream_config = registry.rhodecode_plugins['channelstream']
64 if not self.channelstream_config.get('enabled'):
64 if not self.channelstream_config.get('enabled'):
65 log.exception('Channelstream plugin is disabled')
65 log.error('Channelstream plugin is disabled')
66 raise HTTPBadRequest()
66 raise HTTPBadRequest()
67
67
68 @NotAnonymous()
68 @NotAnonymous()
General Comments 0
You need to be logged in to leave comments. Login now