Remove debugging stmts
diff --git a/xos/synchronizers/base/ansible.py b/xos/synchronizers/base/ansible.py
index 4a4d667..b6f1ca2 100644
--- a/xos/synchronizers/base/ansible.py
+++ b/xos/synchronizers/base/ansible.py
@@ -101,10 +101,9 @@
 def run_template(name, opts, path='', expected_num=None, ansible_config=None, ansible_hosts=None, run_ansible_script=None):
     template = os_template_env.get_template(name)
     buffer = template.render(opts)
-    observer_logger.info(buffer)
 
     (opts, fqp) = get_playbook_fn(opts, path)
-    
+
     f = open(fqp,'w')
     f.write(buffer)
     f.flush()
diff --git a/xos/synchronizers/onos/steps/sync_onosapp.py b/xos/synchronizers/onos/steps/sync_onosapp.py
index 989a460..731c2f5 100644
--- a/xos/synchronizers/onos/steps/sync_onosapp.py
+++ b/xos/synchronizers/onos/steps/sync_onosapp.py
@@ -530,8 +530,6 @@
         if self.is_no_container(o):
             # There is no machine to SSH to, so use the synchronizer's
             # run_template method directly.
-            logger.info("dependencies: %s"%fields["dependencies"])
-            logger.info("install_dependencies: %s"%fields["install_dependencies"])
             run_template("sync_onosapp_nocontainer.yaml", fields)
         else:
             super(SyncONOSApp, self).run_playbook(o, fields)