Skip to content
Snippets Groups Projects
Commit 8d54dcaf authored by nweiz@google.com's avatar nweiz@google.com Committed by Natalie Weizenbaum
Browse files

Add a little additional logging to pub's version solver.

This helped me track down issue 16910, and it seemed general enough to
keep.

R=rnystrom@google.com
BUG=

Review URL: https://codereview.chromium.org//172873006

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@32838 260f80e4-7a28-3924-810f-c04153c831b5
parent 14e9ad15
No related branches found
No related tags found
No related merge requests found
...@@ -402,14 +402,12 @@ class BacktrackingSolver { ...@@ -402,14 +402,12 @@ class BacktrackingSolver {
} }
} else { } else {
// Otherwise, indent it under the current selected package. // Otherwise, indent it under the current selected package.
message = "| $message"; message = prefixLines(message);
} }
// Indent for the previous selections. // Indent for the previous selections.
var buffer = new StringBuffer(); var prefix = _selected.skip(1).map((_) => '| ').join();
buffer.writeAll(_selected.skip(1).map((_) => '| ')); log.solver(prefixLines(message, prefix: prefix));
buffer.write(message);
log.solver(buffer);
} }
} }
...@@ -545,7 +543,11 @@ class Traverser { ...@@ -545,7 +543,11 @@ class Traverser {
// See if it's possible for a package to match that constraint. // See if it's possible for a package to match that constraint.
if (constraint.isEmpty) { if (constraint.isEmpty) {
_solver.logSolve('disjoint constraints on ${dep.name}'); var constraints = _getDependencies(dep.name)
.map((dep) => " ${dep.dep.constraint} from ${dep.depender}")
.join('\n');
_solver.logSolve(
'disjoint constraints on ${dep.name}:\n$constraints');
throw new DisjointConstraintException(dep.name, dependencies); throw new DisjointConstraintException(dep.name, dependencies);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment