changed the logging level on the "entrance" log

Former-commit-id: f0219ea5cac2552ff0255096ba68e9f6c87b7e11
This commit is contained in:
Jeremy Long
2014-03-16 07:00:44 -04:00
parent acb9c01776
commit 27bcead1bc

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;