Skip to content

Commit e8d6f21

Browse files
committed
WIP
1 parent 107e85f commit e8d6f21

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

lib/Mojo/IOLoop/ReadWriteProcess.pm

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,9 +425,11 @@ sub _syswrite {
425425
}
426426

427427
sub _getline {
428-
# warn __PACKAGE__.':'.__LINE__.": !!!!!!!!!!!!!!!! _getline(@_)\n";
428+
warn __PACKAGE__.':'.__LINE__.": !!!!!!!!!!!!!!!! _getline(@_)\n";
429429
return unless IO::Select->new($_[0])->can_read(10);
430-
shift->getline;
430+
my $line = shift->getline;
431+
warn __PACKAGE__.':'.__LINE__.": ------> got: $line\n";
432+
return $line;
431433
}
432434

433435
sub _getlines {

0 commit comments

Comments
 (0)