interop-testing: Fix total calls log statement (#10639)

We don't want local specific formatting of the number, so let's just
concatenate.
This commit is contained in:
Terry Wilson 2023-10-31 14:20:22 -07:00 committed by GitHub
parent d3729faea6
commit 84ddcb04e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ public class StressTestClient {
client.runStressTest(); client.runStressTest();
client.startMetricsLogging(); client.startMetricsLogging();
client.blockUntilStressTestComplete(); client.blockUntilStressTestComplete();
log.log(Level.INFO, "Total calls made: {0}", client.getTotalCallCount()); log.log(Level.INFO, "Total calls made: " + client.getTotalCallCount());
} catch (Exception e) { } catch (Exception e) {
log.log(Level.WARNING, "The stress test client encountered an error!", e); log.log(Level.WARNING, "The stress test client encountered an error!", e);
} finally { } finally {