mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
edge case logs from error -> warn
This commit is contained in:
parent
34bb2ce321
commit
8ea7d5d965
1 changed files with 2 additions and 2 deletions
|
|
@ -97,7 +97,7 @@ public class ZeppelinhubRestApiHandler {
|
|||
try {
|
||||
uri = new URI(proxyHostString);
|
||||
} catch (URISyntaxException e) {
|
||||
LOG.error("Proxy uri doesn't follow correct syntax", e);
|
||||
LOG.warn("Proxy uri doesn't follow correct syntax", e);
|
||||
}
|
||||
if (uri != null) {
|
||||
PROXY_ON = true;
|
||||
|
|
@ -222,7 +222,7 @@ public class ZeppelinhubRestApiHandler {
|
|||
if (proxyClient != null) {
|
||||
body = proxyClient.sendToZeppelinHub(request, withResponse);
|
||||
} else {
|
||||
LOG.error("Proxy client request was submitted while not correctly initialized");
|
||||
LOG.warn("Proxy client request was submitted while not correctly initialized");
|
||||
}
|
||||
return body;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue