Subject: | Annoying Dumper() in Protocol.pm |
Protocol.pm has a couple of print Dumper()'s that cause excessive
debugging verbiage when a request is cancelled.
--- Protocol.pm.orig 2008-10-30 01:30:41.000000000 -0700
+++ Protocol.pm 2008-10-30 00:51:16.000000000 -0700
@@ -585,7 +585,7 @@
O_DEBUG( "_cancel_commands( $req_id, $cmd_id ), cid=$cancel_id =
$cancelled" );
- print Dumper $self->{requests};
+ #print Dumper $self->{requests};
return( $cancelled );
}
@@ -721,7 +721,7 @@
$cmd_id == OTConstant( 'OT_REQUEST_LIST_SYMBOLS' ) or
$cmd_id == OTConstant( 'OT_REQUEST_LIST_SYMBOLS_EX' ) ) )
{
- print Dumper $self->{requests}->{$req_id};
+ #print Dumper $self->{requests}->{$req_id};
O_DEBUG( "pruning $req_id!" );
$self->_prune_request( $req_id );
}