Skip to content

Commit

Permalink
fix: add retrySetting in logging (#1604)
Browse files Browse the repository at this point in the history
  • Loading branch information
franklinWhaite committed Sep 22, 2021
1 parent 8c94050 commit 1a96cb0
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -75,9 +75,10 @@ private static <V> V run(
if (LOG.isLoggable(Level.FINEST)) {
LOG.log(
Level.FINEST,
"Retrying with:\n{0}",
"Retrying with:\n{0}\n{1}",
new Object[] {
"BigQuery retried method: " + callable.getClass().getEnclosingMethod().getName(),
"BigQuery retry settings: " + timedAlgorithm.createFirstAttempt().getGlobalSettings()
});
}

Expand Down

0 comments on commit 1a96cb0

Please sign in to comment.