Skip to content

Commit

Permalink
Use debug log for extra ending_round output
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Jan 17, 2024
1 parent 3557550 commit 8b63fe6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pip/_internal/resolution/resolvelib/reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def starting_round(self, index: int) -> None:
logger.info("Reporter.starting_round(%r)", index)

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

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

0 comments on commit 8b63fe6

Please sign in to comment.