Commit 93288f05 by Sébastien Eustace

Improve resolution debugging

parent 17a8eec2
...@@ -277,7 +277,7 @@ class VersionSolver: ...@@ -277,7 +277,7 @@ class VersionSolver:
new_incompatibility = True new_incompatibility = True
partially = '' if difference is None else ' partially' partially = '' if difference is None else ' partially'
bang = '!' bang = '<fg=red>!</>'
self._log('{} {} is{} satisfied by {}'.format( self._log('{} {} is{} satisfied by {}'.format(
bang, most_recent_term, partially, most_recent_satisfier) bang, most_recent_term, partially, most_recent_satisfier)
) )
......
...@@ -70,7 +70,7 @@ class Provider: ...@@ -70,7 +70,7 @@ class Provider:
self._io = io self._io = io
self._python_constraint = package.python_constraint self._python_constraint = package.python_constraint
self._search_for = {} self._search_for = {}
self._is_debugging = self._io.is_debug() self._is_debugging = self._io.is_debug() or self._io.is_very_verbose()
@property @property
def pool(self): # type: () -> Pool def pool(self): # type: () -> Pool
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment