We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f0fa2a commit c69cfa8Copy full SHA for c69cfa8
1 file changed
README.md
@@ -28,6 +28,10 @@ Mojo::IOLoop::ReadWriteProcess - Execute external programs or internal code bloc
28
$process->stop();
29
my @errors = $process->error;
30
31
+ # To help when debugging Mojo::Collections
32
+ use Mojo::Util qw(dumper);
33
+ my $errors = dumper $process->error->to_array;
34
+
35
# Get process return value
36
$process = process( sub { return "256"; } )->start()->wait_stop;
37
# We need to stop it to retrieve the exit status
0 commit comments