Remove all useless scapy WARNING: on import from scapy
Just delay a whee bit in SSH agent before closing channel/session.
For some reason, there seems to be unread data in the tcp queue.
When closed quickly ends up RST'ing the tcp/onos-karaf server side session.
This causes a bogus "Connection reset by peer" exception in the ONOS log for every cli session established to ONOS from cord-tester

Change-Id: I954429b7d132d89b0f0515b267468bf4127ac127
diff --git a/src/test/mini/__init__.py b/src/test/mini/__init__.py
index 58368ab..b2581e2 100644
--- a/src/test/mini/__init__.py
+++ b/src/test/mini/__init__.py
@@ -14,6 +14,8 @@
 # limitations under the License.
 #
 import os,sys
+import logging
+logging.getLogger('scapy.runtime').setLevel(logging.ERROR)
 ##add the python path to lookup the utils
 working_dir = os.path.dirname(os.path.realpath(sys.argv[-1]))
 utils_dir = os.path.join(working_dir, '../utils')