Skip to content

Commit

Permalink
added additional debugging statement to slave so as to record relatio…
Browse files Browse the repository at this point in the history
…nship between parent and forked child
  • Loading branch information
lstein committed Jan 15, 2009
1 parent ffc9740 commit 1e12f34
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/Bio/Graphics/Browser/Render/Slave.pm
Expand Up @@ -151,6 +151,7 @@ sub run {
my $child = fork();
$self->Fatal("Couldn't fork: $!") unless defined $child;
if ($child) {
$self->Info("Forked child PID $child");
$c->close();
} else {
$self->process_connection($c);
Expand Down

0 comments on commit 1e12f34

Please sign in to comment.