Merge pull request #1961 from jroper/patch-1

Update incremental compile debug message
This commit is contained in:
eugene yokota 2015-04-15 13:14:48 -07:00
commit d619287266
2 changed files with 12 additions and 2 deletions

View File

@ -196,7 +196,7 @@ private[inc] abstract class IncrementalCommon(log: Logger, options: IncOptions)
checkAbsolute(srcChanges.added.toList)
log.debug(
"\nInitial source changes: \n\tremoved:" + srcChanges.removed + "\n\tadded: " + srcChanges.added + "\n\tmodified: " + srcChanges.changed +
"\nRemoved products: " + changes.removedProducts +
"\nInvalidated products: " + changes.removedProducts +
"\nExternal API changes: " + changes.external +
"\nModified binary dependencies: " + changes.binaryDeps +
"\nInitial directly invalidated sources: " + srcDirect +
@ -335,4 +335,4 @@ private[inc] abstract class IncrementalCommon(log: Logger, options: IncOptions)
}
xs.toSet
}
}
}

View File

@ -0,0 +1,10 @@
[@jroper]: https://github.com/jroper
[1961]: https://github.com/sbt/sbt/issues/1961
### Changes with compatibility implications
### Improvements
### Fixes
- Correct incermental compile debug message for invalidated products [#1961][1961] by [@jroper][@jroper]