From e7e37741f7d4fb6bad69392db3fc582b777f22c9 Mon Sep 17 00:00:00 2001 From: Maxime Mouial Date: Tue, 15 Jan 2019 17:53:43 -0500 Subject: [PATCH] Removing log line about py3 validation --- config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.py b/config.py index 7a3aa0dbd3..cd11d98623 100644 --- a/config.py +++ b/config.py @@ -1194,13 +1194,12 @@ def load_check_from_places(check_config, check_name, checks_places, agentConfig) # Validate custom checks and wheels without a `datadog_checks` namespace if not agentConfig.get("disable_py3_validation", False): if version_override in (UNKNOWN_WHEEL_VERSION_MSG, CUSTOM_CHECK_VERSION_MSG): - log.info('Validating {} for Python 3 compatibility'.format(check_path)) a7_compatible = A7_COMPATIBILITY_READY try: file_path = os.path.realpath(check_path.decode(sys.getfilesystemencoding())) warnings = a7.validate.validate_py3(file_path) except Exception as e: - log.error("error executing a7_validate on custom check: %s", e) + log.error("error running 'validate' on custom check: %s", e) warnings = [] a7_compatible = A7_COMPATIBILITY_UNKNOWN