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

Commit

Permalink
Health check on startup is expected to fail, change log level from wa…
Browse files Browse the repository at this point in the history
…rning to debug (#97) (#136)

Health check on startup is expected to fail, change log level from
warning to debug (#97)
  • Loading branch information
BramMeerten committed Nov 23, 2023
1 parent b00b9ae commit 5d4ebc9
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 5d4ebc9

Please sign in to comment.