changed logging message that indicates default state was moved to the log file rather then standard console output

Former-commit-id: e67218ff539a0c2b34cc78d0208f42d815248d7e
This commit is contained in:
Jeremy Long
2014-11-21 06:36:28 -05:00
parent 5fadbb3d25
commit 0d90b676bc

View File

@@ -99,7 +99,7 @@ public class CentralAnalyzer extends AbstractFileTypeAnalyzer {
if (Settings.getBoolean(Settings.KEYS.ANALYZER_CENTRAL_ENABLED)) {
if (!Settings.getBoolean(Settings.KEYS.ANALYZER_NEXUS_ENABLED)
|| NexusAnalyzer.DEFAULT_URL.equals(Settings.getString(Settings.KEYS.ANALYZER_NEXUS_URL))) {
LOGGER.info("Enabling the Central analyzer");
LOGGER.fine("Enabling the Central analyzer");
retval = true;
} else {
LOGGER.info("Nexus analyzer is enabled, disabling the Central Analyzer");