From cd11abf165636e318a89926e28afd1d0fd69f731 Mon Sep 17 00:00:00 2001 From: valentijnscholten Date: Thu, 16 Jan 2025 21:41:42 +0100 Subject: [PATCH] add log line about hash code fields not found Co-authored-by: Cody Maffucci <46459665+Maffooch@users.noreply.github.com> --- dojo/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dojo/models.py b/dojo/models.py index f6bf09b143f..a9f01ef40ad 100644 --- a/dojo/models.py +++ b/dojo/models.py @@ -2186,7 +2186,7 @@ def hash_code_fields(self): deduplicationLogger.debug(f"using HASHCODE_FIELDS_PER_SCANNER for scan_type: {self.scan_type}") hashCodeFields = settings.HASHCODE_FIELDS_PER_SCANNER[self.scan_type] else: - deduplicationLogger.debug(f"test_type name {self.test_type.name} and scan_type {self.scan_type} not found in HASHCODE_FIELDS_PER_SCANNER") + deduplicationLogger.warning(f"test_type name {self.test_type.name} and scan_type {self.scan_type} not found in HASHCODE_FIELDS_PER_SCANNER") else: deduplicationLogger.debug("Section HASHCODE_FIELDS_PER_SCANNER not found in settings.dist.py")