mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix log
This commit is contained in:
parent
409993a8ee
commit
34bb2ce321
1 changed files with 3 additions and 3 deletions
|
|
@ -185,19 +185,19 @@ public class HttpProxyClient {
|
|||
|
||||
public void completed(final HttpResponse response) {
|
||||
request.releaseConnection();
|
||||
LOG.info("Note {} completed with {} status", request,
|
||||
LOG.info("Note {} completed with {} status", request.getMethod(),
|
||||
response.getStatusLine());
|
||||
}
|
||||
|
||||
public void failed(final Exception ex) {
|
||||
request.releaseConnection();
|
||||
LOG.error("Note {} failed with {} message", request,
|
||||
LOG.error("Note {} failed with {} message", request.getMethod(),
|
||||
ex.getMessage());
|
||||
}
|
||||
|
||||
public void cancelled() {
|
||||
request.releaseConnection();
|
||||
LOG.info("Note {} was canceled", request);
|
||||
LOG.info("Note {} was canceled", request.getMethod());
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue