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 f9a05f5 commit 7dc5b2bCopy full SHA for 7dc5b2b
utils/src/main/java/com/cloud/utils/script/Script.java
@@ -246,7 +246,7 @@ 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 && sensitiveArgIndices.isEmpty()) {
+ if (_logger.isDebugEnabled() && !avoidLoggingCommand) {
250
_logger.debug(String.format("Executing command [%s].", commandLine.split(KeyStoreUtils.KS_FILENAME)[0]));
251
}
252
0 commit comments