We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30fed1a commit 64a6547Copy full SHA for 64a6547
utils/src/main/java/com/cloud/utils/script/Script.java
@@ -246,8 +246,8 @@ static String stackTraceAsString(Throwable throwable) {
246
public String execute(OutputInterpreter interpreter) {
247
String[] command = _command.toArray(new String[_command.size()]);
248
String commandLine = buildCommandLine(command);
249
- if (_logger.isDebugEnabled() && !avoidLoggingCommand) {
250
- _logger.debug(String.format("Executing command [%s].", commandLine.split(KeyStoreUtils.KS_FILENAME)[0]));
+ if (_logger.isDebugEnabled() ) {
+ _logger.debug(String.format("Executing command [%s].", commandLine));
251
}
252
253
try {
0 commit comments