You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOG.warn(String.format("Failed to complete the requested command [%s] due to execution error.", oneLineCommand), e);
114
+
LOG.warn(String.format("Failed to complete the requested command [%s] due to execution error.", commands), e);
94
115
retVal = -2;
95
116
stdError = e.getMessage();
96
117
} catch (TimeoutExceptione) {
97
-
LOG.warn(String.format("Failed to complete the requested command [%s] within timeout. Defined timeout: [%s].", oneLineCommand, timeOut.getStandardSeconds()), e);
118
+
LOG.warn(String.format("Failed to complete the requested command [%s] within timeout. Defined timeout: [%s].", commandLog, timeOut.getStandardSeconds()), e);
98
119
retVal = -1;
99
120
stdError = "Operation timed out, aborted.";
100
121
} finally {
@@ -105,10 +126,10 @@ public Integer call() throws Exception {
105
126
process.destroy();
106
127
}
107
128
108
-
LOG.debug(String.format("Process standard output for command [%s]: [%s].", oneLineCommand, stdOutput));
109
-
LOG.debug(String.format("Process standard error output command [%s]: [%s].", oneLineCommand, stdError));
129
+
LOG.debug(String.format("Process standard output for command [%s]: [%s].", commandLog, stdOutput));
130
+
LOG.debug(String.format("Process standard error output command [%s]: [%s].", commandLog, stdError));
0 commit comments