From 4aa8ba946e95a3607f3612d8f65a774ea0449153 Mon Sep 17 00:00:00 2001 From: Jeromy Cannon Date: Fri, 22 Sep 2023 18:55:38 +0100 Subject: [PATCH] only %n for string.format Signed-off-by: Jeromy Cannon --- .../fullstack/helm/client/execution/HelmExecution.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fullstack-helm-client/src/main/java/com/hedera/fullstack/helm/client/execution/HelmExecution.java b/fullstack-helm-client/src/main/java/com/hedera/fullstack/helm/client/execution/HelmExecution.java index 421378347..e0e97b603 100644 --- a/fullstack-helm-client/src/main/java/com/hedera/fullstack/helm/client/execution/HelmExecution.java +++ b/fullstack-helm-client/src/main/java/com/hedera/fullstack/helm/client/execution/HelmExecution.java @@ -227,7 +227,7 @@ public T responseAs(final Class responseClass, final Duration timeout) { final String standardError = StreamUtils.streamToString(suppressExceptions(this::standardError)); LOGGER.debug( - "ResponseAs exiting with exitCode: {}%n\tResponseClass: {}%n\tstandardOutput: {}%n\tstandardError: {}", + "ResponseAs exiting with exitCode: {}TODO\n\tResponseClass: {}\n\tstandardOutput: {}\n\tstandardError: {}", exitCode(), responseClass.getName(), standardOutput, standardError); try { @@ -288,7 +288,7 @@ public List responseAsList(final Class responseClass, final Duration t final String standardError = StreamUtils.streamToString(suppressExceptions(this::standardError)); LOGGER.debug( - "ResponseAsList exiting with exitCode: {}%n\tResponseClass: {}%n\tstandardOutput: {}%n\tstandardError: {}", + "ResponseAsList exiting with exitCode: {}\n\tResponseClass: {}\n\tstandardOutput: {}\n\tstandardError: {}", exitCode(), responseClass.getName(), standardOutput, standardError); try { @@ -339,12 +339,12 @@ public void call(final Duration timeout) { final String standardError = StreamUtils.streamToString(suppressExceptions(this::standardError)); LOGGER.debug( - "Call exiting with exitCode: {}%n\tstandardOutput: {}%n\tstandardError: {}", + "Call exiting with exitCode: {}\n\tstandardOutput: {}\n\tstandardError: {}", exitCode(), standardOutput, standardError); if (exitCode() != 0) { LOGGER.warn( - "Call failed with exitCode: {}%n\tstandardOutput: {}%n\tstandardError: {}", + "Call failed with exitCode: {}\n\tstandardOutput: {}\n\tstandardError: {}", exitCode(), standardOutput, standardError); throw new HelmExecutionException(exitCode(), standardError, standardOutput);