Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Health check on startup is expected to fail, change log level from warning to debug (#97) #136

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private boolean ready(HttpClient client, HttpRequest request, String processName
return response.statusCode() == 200;
} catch (ConnectException e) {
// still want to retry
log.warn("Cannot connect to the server", e);
log.debug("Cannot connect to the server", e);
return false;
} catch (IOException e) {
throw new JenvtestException(e);
Expand Down
Loading