Changes to accomodate new driver function
diff --git a/TestON/tests/TopoPerfNext/TopoPerfNext.py b/TestON/tests/TopoPerfNext/TopoPerfNext.py
index fe1a516..a710f82 100644
--- a/TestON/tests/TopoPerfNext/TopoPerfNext.py
+++ b/TestON/tests/TopoPerfNext/TopoPerfNext.py
@@ -51,13 +51,6 @@
         main.ONOSbench.onos_uninstall(node_ip=ONOS6_ip)
         main.ONOSbench.onos_uninstall(node_ip=ONOS7_ip)
 
-        #NOTE: This step may be removed after proper 
-        #      copy cat log functionality
-        main.step("Removing copy-cat files from ONOS nodes")
-        main.ONOS1.handle.sendline("sudo rm /tmp/onos-copy-cat*")
-        main.ONOS2.handle.sendline("sudo rm /tmp/onos-copy-cat*")
-        main.ONOS3.handle.sendline("sudo rm /tmp/onos-copy-cat*")
-
         main.step("Creating cell file")
         cell_file_result = main.ONOSbench.create_cell_file(
                 BENCH_ip, cell_name, MN1_ip, "onos-core",
@@ -67,6 +60,11 @@
         cell_apply_result = main.ONOSbench.set_cell(cell_name)
         verify_cell_result = main.ONOSbench.verify_cell()
         
+        #NOTE: This step may be removed after proper 
+        #      copy cat log functionality
+        main.step("Removing raft/copy-cat logs from ONOS nodes")
+        main.ONOSbench.onos_remove_raft_logs()
+        
         main.step("Git checkout and pull "+checkout_branch)
         if git_pull == 'on':
             checkout_result = \