more debugging
diff --git a/onos-build-vm.py b/onos-build-vm.py
index d01d6ee..087c98c 100755
--- a/onos-build-vm.py
+++ b/onos-build-vm.py
@@ -20,7 +20,7 @@
 onos_version='1.0.0'
 
 # Import required functions from the Mininet build script
-from build import bootAndRun, Prompt, OVFOSNameID, generateOVF, log, build, run, LogToConsole
+from build import bootAndRun, Prompt, OVFOSNameID, generateOVF, log, build, run
 
 def installONOS( vm, prompt=Prompt ):
     # start with sendline
@@ -98,8 +98,6 @@
     args = parser.parse_args()
 
     print args
-    
-    LogToConsole = True
 
     buildONOS( args.image, args.out )
 
diff --git a/vm-setup-lxc.sh b/vm-setup-lxc.sh
index 95a7efc..33a4945 100644
--- a/vm-setup-lxc.sh
+++ b/vm-setup-lxc.sh
@@ -67,8 +67,10 @@
 
 sudo lxc-ls --fancy
 
+echo "adding host keys to known_hosts"
 # SSH to each once to add the host key to known_hosts
 for onos in 10.0.3.11 10.0.3.12 10.0.3.13
 do
+	echo "sshing to $onos"
 	ssh -o "StrictHostKeyChecking no" sdn@${onos} ls
 done