Tweak log entry for "not compiling" packages.

Motivation: Make it clear that the message is indicating packages
*which do not compile*, rather than packages which *won't be
compiled [for some unknown reason]*.
This commit is contained in:
Peter Schuller 2018-10-27 21:05:45 -07:00 committed by Isaev Denis
parent e5a60caa97
commit a84578d603

@ -271,7 +271,7 @@ func separateNotCompilingPackages(lintCtx *linter.Context) {
}
if len(lintCtx.NotCompilingPackages) != 0 {
lintCtx.Log.Infof("Not compiling packages: %+v", lintCtx.NotCompilingPackages)
lintCtx.Log.Infof("Packages that do not compile: %+v", lintCtx.NotCompilingPackages)
}
}