Skip to content

Commit e7e3774

Browse files
committed
Removing log line about py3 validation
1 parent bf2e3ac commit e7e3774

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,13 +1194,12 @@ def load_check_from_places(check_config, check_name, checks_places, agentConfig)
11941194
# Validate custom checks and wheels without a `datadog_checks` namespace
11951195
if not agentConfig.get("disable_py3_validation", False):
11961196
if version_override in (UNKNOWN_WHEEL_VERSION_MSG, CUSTOM_CHECK_VERSION_MSG):
1197-
log.info('Validating {} for Python 3 compatibility'.format(check_path))
11981197
a7_compatible = A7_COMPATIBILITY_READY
11991198
try:
12001199
file_path = os.path.realpath(check_path.decode(sys.getfilesystemencoding()))
12011200
warnings = a7.validate.validate_py3(file_path)
12021201
except Exception as e:
1203-
log.error("error executing a7_validate on custom check: %s", e)
1202+
log.error("error running 'validate' on custom check: %s", e)
12041203
warnings = []
12051204
a7_compatible = A7_COMPATIBILITY_UNKNOWN
12061205

0 commit comments

Comments
 (0)