Skip to content

Commit

Permalink
Change the error output of the callback server client.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 717495992
Change-Id: Ic048cdcf16413dd2f94a2ead6afc441d17087e1d
  • Loading branch information
tooryx authored and copybara-github committed Jan 20, 2025
1 parent 5859f13 commit 694bbda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private Optional<PollingResult> sendPollingRequest(String secretString) {
jsonParser.merge(response.bodyString().get(), result);
return Optional.of(result.build());
} else {
logger.atInfo().log("OOB server returned %s", response.status().code());
logger.atInfo().log("Callback server returned %s", response.status().code());
}
} catch (IOException e) {
logger.atWarning().withCause(e).log("Polling request failed");
Expand Down

0 comments on commit 694bbda

Please sign in to comment.