diff --git a/bin/nova-ajax-console-proxy b/bin/nova-ajax-console-proxy index 23fb42fb..5546e37a 100755 --- a/bin/nova-ajax-console-proxy +++ b/bin/nova-ajax-console-proxy @@ -102,7 +102,8 @@ class AjaxConsoleProxy(object): % (req_url, str(env))) start_response("401 NOT AUTHORIZED", []) return "Not Authorized" - except Exception: + except Exception, exc: + LOG.exception(exc) start_response("500 ERROR", []) return "Server Error"