From 3c3e04ec72e3ed0b7067d723baa007d0b6a2f6eb Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Thu, 14 Jul 2016 11:36:44 -0700 Subject: [PATCH] Log circumstances of deprecation warnings --- certbot/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/certbot/cli.py b/certbot/cli.py index 470267029..6460dcb4c 100644 --- a/certbot/cli.py +++ b/certbot/cli.py @@ -162,6 +162,7 @@ def possible_deprecation_warning(config): "not receive updates, and is less reliable than more recent versions. " "We recommend upgrading to the latest certbot-auto script, or using native " "OS packages.") + logger.debug("Deprecation warning circumstances: %s / %s", sys.argv[0], os.environ) class _Default(object):