Make obscount disconnections visible
[spider.git] / perl / DXProt.pm
index 345b61cb42f6965a121572662a4c9239b1983f0f..21940b43d55e73ca2a7384323f78c79c82ed185c 100644 (file)
@@ -885,14 +885,14 @@ sub time_out_pc92_routes
                my $o = $n->dec_obs;
                if ($o <= 0) {
                        if (my $dxchan = DXChannel::get($n->call)) {
-                               dbg("ROUTE: disconnecting local pc92 $dxchan->{call} on obscount") if isdbg('route');
+                               dbg("disconnecting local pc92 $dxchan->{call} on obscount");
                                $dxchan->disconnect;
                                next;
                        }
                        my @parents = map {Route::Node::get($_)} $n->parents;
                        for (@parents) {
                                if ($_) {
-                                       dbg("ROUTE: deleting pc92 $_->{call} from $n->{call} on obscount") if isdbg('route');
+                                       dbg("deleting pc92 $_->{call} from $n->{call} on obscount");
                                        push @rdel, $n->del($_);
                                }
                        }