Remove verbose command printouts

This commit is contained in:
Brandon Heller
2009-12-20 03:54:37 -08:00
parent 8e63d3cb72
commit 75810224ed
+2 -2
View File
@@ -230,9 +230,9 @@ class Node( object ):
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):