Change logging method

Change-Id: I29c0a1cebfd40da2a4cb6c9e87abb424a71b5a57
diff --git a/src/main/java/net/onrc/onos/intent/runtime/PlanCalcRuntime.java b/src/main/java/net/onrc/onos/intent/runtime/PlanCalcRuntime.java
index 37ad7a2..4a5ca37 100644
--- a/src/main/java/net/onrc/onos/intent/runtime/PlanCalcRuntime.java
+++ b/src/main/java/net/onrc/onos/intent/runtime/PlanCalcRuntime.java
@@ -120,10 +120,10 @@
 		    break;
 		}
 		map.put(e, i);
-		System.out.println(e + " " + e.getOperator());
+		// System.out.println(e + " " + e.getOperator());
 	    }
 	}
-		
+
 	// really simple first iteration of plan
 	//TODO: optimize the map in phases
 	Set<FlowEntry> phase = new HashSet<>();
@@ -141,7 +141,7 @@
 	    phase.add(e);
 	}
 	plan.add(phase);
-		
+
 	return plan;
     }
 }