change missing config logging from warn to debug

This commit is contained in:
Sebastian Sdorra
2012-04-18 10:17:45 +02:00
parent 2cb6bb7d82
commit bfaf928d0d

View File

@@ -150,9 +150,9 @@ public class ScmConfigurationUtil
throw new ConfigurationException("could not load config", ex);
}
}
else if (logger.isWarnEnabled())
else if (logger.isDebugEnabled())
{
logger.warn("could not find ScmConfiuration file at {}", file);
logger.debug("could not find ScmConfiuration file at {}", file);
}
}