IVSSwitch: turn off verbose logging by default

Most users don't need this much logging and it slows down the switch.
This commit is contained in:
Rich Lane
2014-11-19 18:24:49 -08:00
parent 593fc365d0
commit f5164f86b7
+1 -1
View File
@@ -1208,7 +1208,7 @@ class OVSBridge( OVSSwitch ):
class IVSSwitch(Switch):
"""IVS virtual switch"""
def __init__( self, name, verbose=True, **kwargs ):
def __init__( self, name, verbose=False, **kwargs ):
Switch.__init__( self, name, **kwargs )
self.verbose = verbose