@@ -723,6 +723,8 @@ class HiveServerClient:
res = self.call(self._client.GetLog, req)
return res.log
except:
+ LOG.exception('server does not support GetLog')
+
return 'Server does not support GetLog()'
@@ -493,6 +493,8 @@ def view_results(request, id, first_row=0):
columns = results.data_table.cols()
except Exception, ex:
+ LOG.exception('error fetching results')
fetch_error = True
error_message, log = expand_exception(ex, db, handle)