From 75810224edabcda73d9309ec88f0b3085b5009c6 Mon Sep 17 00:00:00 2001
From: Brandon Heller <brandonh@stanford.edu>
Date: Sun, 20 Dec 2009 03:54:37 -0800
Subject: [PATCH] Remove verbose command printouts

---
 mininet/mininet.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mininet/mininet.py b/mininet/mininet.py
index 89582447..eca9d9b1 100755
--- a/mininet/mininet.py
+++ b/mininet/mininet.py
@@ -230,9 +230,9 @@ def cmd( self, cmd ):
       return self.waitOutput()
    def cmdPrint( self, cmd ):
       "Call cmd, printing the command and output"
-      lg.info("*** %s : %s", self.name, cmd)
+      #lg.info("*** %s : %s", self.name, cmd)
       result = self.cmd( cmd )
-      lg.info("%s\n", result)
+      #lg.info("%s\n", result)
       return result
    # Interface management, configuration, and routing
    def intfName( self, n):
-- 
GitLab