From 13d25b410920845f75c5bd1ff1b5f69f28cb0eee Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Thu, 10 Jul 2014 12:44:49 -0700 Subject: [PATCH] Minor message changes --- mininet/net.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mininet/net.py b/mininet/net.py index be0d287..281980a 100755 --- a/mininet/net.py +++ b/mininet/net.py @@ -171,7 +171,7 @@ class Mininet( object ): up to 5 seconds timeout: time to wait, or None to wait indefinitely returns: True if all switches are connected""" - info( '***waiting for switches to connect\n' ) + info( '*** Waiting for switches to connect\n' ) time = 0 remaining = copy.copy( self.switches ) while time < timeout or timeout == None: @@ -678,7 +678,7 @@ class Mininet( object ): if l4Type == 'TCP': while 'Connected' not in client.cmd( 'sh -c "echo A | telnet -e A %s 5001"' % server.IP()): - output('waiting for iperf to start up...') + info( 'Waiting for iperf to start up...' ) sleep(.5) cliout = client.cmd( iperfArgs + '-t 5 -c ' + server.IP() + ' ' + bwArgs )