changed the logging level on the "entrance" log

Former-commit-id: 92b0b110cbcf05ca71e22fc244d1daefd5072e26
This commit is contained in:
Jeremy Long
2014-03-16 07:00:44 -04:00
parent efa6c8135d
commit 277ee4c4b2

View File

@@ -115,7 +115,7 @@ public class NuspecAnalyzer extends AbstractAnalyzer {
*/
@Override
public void analyze(Dependency dependency, Engine engine) throws AnalysisException {
LOGGER.log(Level.INFO, "Checking Nuspec file {0}", dependency.toString());
LOGGER.log(Level.FINE, "Checking Nuspec file {0}", dependency.toString());
try {
final NuspecParser parser = new XPathNuspecParser();
NugetPackage np = null;