Log ending round state @ during resolver debug

This change corrects a tiny-little mistake made in
9f318de7b6 that was causing the word
"state" to be printed out in the log instead of the value of the
`ending_round()`'s state` argument.
This commit is contained in:
Sviatoslav Sydorenko 2023-09-07 01:08:19 +02:00
parent 6f3a7181b6
commit 62fae81223
No known key found for this signature in database
GPG Key ID: 9345E8FEA89CA455
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class PipDebuggingReporter(BaseReporter):
logger.info("Reporter.starting_round(%r)", index)
def ending_round(self, index: int, state: Any) -> None:
logger.info("Reporter.ending_round(%r, state)", index)
logger.info("Reporter.ending_round(%r, %r)", index, state)
def ending(self, state: Any) -> None:
logger.info("Reporter.ending(%r)", state)