diff --git a/route/route.go b/route/route.go
index 3dfbb78b4dd9ce80b279d123148d76aec3c4bd98..970f556a38c76f6117dd7ced1000e64646921a50 100644
--- a/route/route.go
+++ b/route/route.go
@@ -193,12 +193,6 @@ func getBestProtocol(paths []*Path) uint8 {
 // Print returns a prinatble representation of route `r`
 func (r *Route) Print() string {
 	ret := fmt.Sprintf("%s:\n", r.pfx.String())
-	//ret += fmt.Sprintf("Best path:\n")
-	//ret += r.bestPath.Print()
-	/*ret += fmt.Sprintf("Active Paths:\n")
-	for _, p := range r.activePaths {
-		ret += p.Print()
-	}*/
 	ret += fmt.Sprintf("All Paths:\n")
 	for _, p := range r.paths {
 		ret += p.Print()