commit | 37e4aa900ebeec9ed46d913147fdafe2d4991de2 | [log] [tgz] |
---|---|---|
author | suibin zhang <suibin@onlab.us> | Wed Mar 30 16:16:16 2016 -0700 |
committer | suibin zhang <suibin@onlab.us> | Wed Mar 30 16:16:16 2016 -0700 |
tree | ed1cb54048580348ca20a2339ce0d2610a690675 | |
parent | 5c735ca9c5b5fa5e44145ff71fd8bd7cd150c8a5 [diff] |
clean up some loggings Change-Id: I8d38db487eb76811690b1a69f184799a7a758cc1
diff --git a/TestON/drivers/common/api/controller/onosrestdriver.py b/TestON/drivers/common/api/controller/onosrestdriver.py index 0d335c1..ed7786c 100644 --- a/TestON/drivers/common/api/controller/onosrestdriver.py +++ b/TestON/drivers/common/api/controller/onosrestdriver.py
@@ -1335,7 +1335,7 @@ ''' returnValue = main.FALSE numPending += 1 - main.log.info("Number of non-ADDED flows are: " + str(numPending)) + main.log.info("Number of PENDING flows are: " + str(numPending)) return returnValue except ( AttributeError, TypeError ): main.log.exception( self.name + ": Object not as expected" )
diff --git a/TestON/tests/COMPflow/COMPflow.py b/TestON/tests/COMPflow/COMPflow.py index 7b91431..39246d6 100644 --- a/TestON/tests/COMPflow/COMPflow.py +++ b/TestON/tests/COMPflow/COMPflow.py
@@ -331,7 +331,7 @@ tStartRemove = time.time() for item in main.addedBatchList: ts = time.time() - print(item) + #print(item) resp = main.ONOSrest.removeFlowBatch(batch = json.loads(item) ) teBatch = time.time() - ts rmTimes.append(teBatch)