From b36cf7c4501f011823c416ecce3d80536f1bda97 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Mon, 23 Jun 2014 17:34:20 +0200 Subject: [PATCH] remove debug output --- RoutingAlgorithms/ManyToManyRouting.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/RoutingAlgorithms/ManyToManyRouting.h b/RoutingAlgorithms/ManyToManyRouting.h index d8e888794..7819c676d 100644 --- a/RoutingAlgorithms/ManyToManyRouting.h +++ b/RoutingAlgorithms/ManyToManyRouting.h @@ -92,14 +92,12 @@ template class ManyToManyRouting : public BasicRoutingInterf query_heap.Insert(phantom_node.forward_node_id, phantom_node.GetForwardWeightPlusOffset(), phantom_node.forward_node_id); - SimpleLogger().Write(logDEBUG) << "[" << target_id << "] rev insert: " << phantom_node.forward_node_id; } if (SPECIAL_NODEID != phantom_node.reverse_node_id) { query_heap.Insert(phantom_node.reverse_node_id, phantom_node.GetReverseWeightPlusOffset(), phantom_node.reverse_node_id); - SimpleLogger().Write(logDEBUG) << "[" << target_id << "] rev insert: " << phantom_node.reverse_node_id; } } @@ -124,14 +122,12 @@ template class ManyToManyRouting : public BasicRoutingInterf query_heap.Insert(phantom_node.forward_node_id, -phantom_node.GetForwardWeightPlusOffset(), phantom_node.forward_node_id); - SimpleLogger().Write(logDEBUG) << "[" << source_id << "] fwd insert: " << phantom_node.forward_node_id; } if (SPECIAL_NODEID != phantom_node.reverse_node_id) { query_heap.Insert(phantom_node.reverse_node_id, -phantom_node.GetReverseWeightPlusOffset(), phantom_node.reverse_node_id); - SimpleLogger().Write(logDEBUG) << "[" << source_id << "] fwd insert: " << phantom_node.reverse_node_id; } }