changed log level to hide extraction of Grok Assembly from users

Former-commit-id: dd94cf7d64ecff45da7b172dcd11d690debcda10
This commit is contained in:
Jeremy Long
2014-02-23 08:45:04 -05:00
parent 132d43f999
commit 50b4630436

View File

@@ -172,7 +172,7 @@ public class AssemblyAnalyzer extends AbstractAnalyzer {
grokAssemblyExe = tempFile;
// Set the temp file to get deleted when we're done
grokAssemblyExe.deleteOnExit();
LOG.log(Level.INFO, "Extracted GrokAssembly.exe to {0}", grokAssemblyExe.getPath());
LOG.log(Level.FINE, "Extracted GrokAssembly.exe to {0}", grokAssemblyExe.getPath());
} catch (IOException ioe) {
LOG.log(Level.WARNING, "Could not extract GrokAssembly.exe: {0}", ioe.getMessage());
throw new AnalysisException("Could not extract GrokAssembly.exe", ioe);