From 24416b9e49ceeb55e7cfa15d8ee0c15410368c98 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 25 Oct 2012 22:19:50 -0400 Subject: [PATCH] Remove stray debug message --- lib/ansible/runner/connection_plugins/paramiko_ssh.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/ansible/runner/connection_plugins/paramiko_ssh.py b/lib/ansible/runner/connection_plugins/paramiko_ssh.py index 166f7c7b7ff..c197c1e084f 100644 --- a/lib/ansible/runner/connection_plugins/paramiko_ssh.py +++ b/lib/ansible/runner/connection_plugins/paramiko_ssh.py @@ -57,7 +57,6 @@ class Connection(object): def connect(self): cache_key = self._cache_key() if cache_key in SSH_CONNECTION_CACHE: - print "DEBUG: using cached" self.ssh = SSH_CONNECTION_CACHE[cache_key] else: print "DEBUG: using new"