@@ -216,7 +216,7 @@ private void handleResponse(
216
216
// is a retriable error
217
217
if (retryCount .get () > maxRetries ) {
218
218
final String message = MessageFormat
219
- .format ("OutOfRetriesError with last call {} {} {}" ,
219
+ .format ("OutOfRetriesError with last call {0 } {1 } {2 }" ,
220
220
response .getStatusCode (),
221
221
response .getErrorString (),
222
222
response .getResponseString ()
@@ -226,7 +226,7 @@ private void handleResponse(
226
226
} //else
227
227
228
228
final String message = MessageFormat
229
- .format ("Retriable Error with last call {} {} {} - retying in {} ms" ,
229
+ .format ("Retriable Error with last call {0 } {1 } {2 } - retying in {3 } ms" ,
230
230
response .getStatusCode (),
231
231
response .getErrorString (),
232
232
response .getResponseString (),
@@ -240,7 +240,7 @@ private void handleResponse(
240
240
241
241
// NOT retrying -> data loss
242
242
final String message = MessageFormat
243
- .format ("Non-retriable Error with last call {} {} {} " ,
243
+ .format ("Non-retriable Error with last call {0 } {1 } {2 } " ,
244
244
response .getStatusCode (),
245
245
response .getErrorString (),
246
246
response .getResponseString ()
0 commit comments