Skip to content

Commit 9932167

Browse files
committed
Merge branch 'mrrobot47-fix/printing-stderr' into develop
2 parents ac932d9 + c2c5553 commit 9932167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php/class-ee.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ public static function exec( $command, $echo_stdout = false, $echo_stderr = fals
889889
echo $results->stdout;
890890
}
891891
if ( $echo_stderr && ! $exit_on_error ) {
892-
echo $results->stderr;
892+
error_log( $results->stderr );
893893
}
894894
if ( ! $results->return_code ) {
895895
return true;

0 commit comments

Comments
 (0)