Add status to debug logging of executeShellCommand

pull/3642/head
Isaac Connor 2022-12-04 10:35:15 -05:00
parent 06a14f1410
commit 1d19d362ae
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ sub executeShellCommand {
if ( $status || logDebugging() ) {
$output = '' if !defined($output);
chomp($output);
Debug("Command: $command Output: $output");
Debug("Command: $command Status: $status Output: $output");
}
return $status;
}