fixup logger warning call

This commit is contained in:
Jörg Thalheim 2024-01-01 08:00:13 +01:00
parent 4bb5e60cf2
commit 6882c81e90
2 changed files with 6 additions and 2 deletions

View file

@ -684,7 +684,7 @@ class AnyProjectEndpointMatcher(EndpointMatcherBase):
builder = yield self.master.data.get(("builders", res["builderid"]))
if builder["name"] in self.builders:
log.warning(
log.warn(
"Builder {builder} allowed by {role}: {builders}",
builder=builder["name"],
role=self.role,
@ -692,7 +692,7 @@ class AnyProjectEndpointMatcher(EndpointMatcherBase):
)
return Match(self.master, **{object_type: res})
else:
log.warning(
log.warn(
"Builder {builder} not allowed by {role}: {builders}",
builder=builder["name"],
role=self.role,

View file

@ -79,6 +79,10 @@ ignore = [
"E501", # line too long
"T201", # `print` found
"PLR2004", # Magic value used in comparison
# not compatible with twisted logger: https://docs.twisted.org/en/twisted-18.7.0/core/howto/logger.html
"PGH002", # `warn` is deprecated in favor of `warning`
"G010", # Logging statement uses `warn` instead of `warning`
]
[tool.mypy]