Skip to content

Commit 0299bb2

Browse files
committed
Fix log with wrong nbr of params
1 parent 3e83355 commit 0299bb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sonar/projects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ def scanner(self) -> str:
560560

561561
def __audit_scanner(self, audit_settings: types.ConfigSettings) -> list[Problem]:
562562
proj_type, scanner = self.get_type(), self.scanner()
563-
log.debug("%s is of type %s and uses scanner %s", proj_type, scanner)
563+
log.debug("%s is of type %s and uses scanner %s", str(self), proj_type, scanner)
564564
if proj_type == "UNKNOWN":
565565
log.info("%s project type can't be identified, skipping check", str(self))
566566
return []

0 commit comments

Comments
 (0)