We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 107e85f commit e8d6f21Copy full SHA for e8d6f21
1 file changed
lib/Mojo/IOLoop/ReadWriteProcess.pm
@@ -425,9 +425,11 @@ sub _syswrite {
425
}
426
427
sub _getline {
428
-# warn __PACKAGE__.':'.__LINE__.": !!!!!!!!!!!!!!!! _getline(@_)\n";
+ warn __PACKAGE__.':'.__LINE__.": !!!!!!!!!!!!!!!! _getline(@_)\n";
429
return unless IO::Select->new($_[0])->can_read(10);
430
- shift->getline;
+ my $line = shift->getline;
431
+ warn __PACKAGE__.':'.__LINE__.": ------> got: $line\n";
432
+ return $line;
433
434
435
sub _getlines {
0 commit comments