Skip to content

Commit 62fae81

Browse files
committed
Log ending round state @ during resolver debug
This change corrects a tiny-little mistake made in 9f318de that was causing the word "state" to be printed out in the log instead of the value of the `ending_round()`'s state` argument.
1 parent 6f3a718 commit 62fae81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pip/_internal/resolution/resolvelib/reporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def starting_round(self, index: int) -> None:
6565
logger.info("Reporter.starting_round(%r)", index)
6666

6767
def ending_round(self, index: int, state: Any) -> None:
68-
logger.info("Reporter.ending_round(%r, state)", index)
68+
logger.info("Reporter.ending_round(%r, %r)", index, state)
6969

7070
def ending(self, state: Any) -> None:
7171
logger.info("Reporter.ending(%r)", state)

0 commit comments

Comments
 (0)