1
0
Fork 0

changed info to debug

This commit is contained in:
Frank Celler 2014-02-28 12:28:31 +01:00
parent 1aa3a02167
commit a764a9a772
1 changed files with 5 additions and 5 deletions

View File

@ -887,7 +887,7 @@ bool ApplicationServer::readConfigurationFile () {
return true; return true;
} }
LOG_INFO("using init file '%s'", _configFile.c_str()); LOG_DEBUG("using init file '%s'", _configFile.c_str());
bool ok = _options.parse(_descriptionFile, _configFile); bool ok = _options.parse(_descriptionFile, _configFile);
@ -930,7 +930,7 @@ bool ApplicationServer::readConfigurationFile () {
// check and see if file exists // check and see if file exists
if (FileUtils::exists(homeDir)) { if (FileUtils::exists(homeDir)) {
LOG_INFO("using user init file '%s'", homeDir.c_str()); LOG_DEBUG("using user init file '%s'", homeDir.c_str());
bool ok = _options.parse(_descriptionFile, homeDir); bool ok = _options.parse(_descriptionFile, homeDir);
@ -969,7 +969,7 @@ bool ApplicationServer::readConfigurationFile () {
// check and see if a local override file exists // check and see if a local override file exists
if (FileUtils::exists(localSysDir)) { if (FileUtils::exists(localSysDir)) {
LOG_INFO("using init override file '%s'", localSysDir.c_str()); LOG_DEBUG("using init override file '%s'", localSysDir.c_str());
bool ok = _options.parse(_descriptionFile, localSysDir); bool ok = _options.parse(_descriptionFile, localSysDir);
@ -981,12 +981,12 @@ bool ApplicationServer::readConfigurationFile () {
} }
} }
else { else {
LOG_TRACE("no system init override file '%s' found", sysDir.c_str()); LOG_DEBUG("no system init override file '%s' found", sysDir.c_str());
} }
// check and see if file exists // check and see if file exists
if (FileUtils::exists(sysDir)) { if (FileUtils::exists(sysDir)) {
LOG_INFO("using init file '%s'", sysDir.c_str()); LOG_DEBUG("using init file '%s'", sysDir.c_str());
bool ok = _options.parse(_descriptionFile, sysDir); bool ok = _options.parse(_descriptionFile, sysDir);