From ab097d128b502eaa44a8d77d2ff9d5a59dcb5126 Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Fri, 24 Jul 2015 06:41:56 +0000 Subject: [PATCH] Fix logging -> logger typo. --- letsencrypt/plugins/manual.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/plugins/manual.py b/letsencrypt/plugins/manual.py index b5ddd2140..83f2c0f70 100644 --- a/letsencrypt/plugins/manual.py +++ b/letsencrypt/plugins/manual.py @@ -145,7 +145,7 @@ binary for temporary key/certificate generation.""".replace("\n", "") # "preexec_fn" is UNIX specific, but so is "command" preexec_fn=os.setsid) except OSError as error: # ValueError should not happen! - logging.debug( + logger.debug( "Couldn't execute manual command: %s", error, exc_info=True) return False logger.debug("Manual command running as PID %s.", self._httpd.pid)