Skip to content

Commit

Permalink
decrease level of message concerning the db (#2424)
Browse files Browse the repository at this point in the history
* decrease level of message concerning the db

* format
  • Loading branch information
Barthelemy authored Sep 19, 2024
1 parent 288199b commit 6564cc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Framework/src/AggregatorRunner.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ void AggregatorRunner::initDatabase()
{
mDatabase = DatabaseFactory::create(mRunnerConfig.database.at("implementation"));
mDatabase->connect(mRunnerConfig.database);
ILOG(Info, Support) << "Database that is going to be used > Implementation : " << mRunnerConfig.database.at("implementation") << " / Host : " << mRunnerConfig.database.at("host") << ENDM;
ILOG(Info, Devel) << "Database that is going to be used > Implementation : " << mRunnerConfig.database.at("implementation") << " / Host : " << mRunnerConfig.database.at("host") << ENDM;
}

void AggregatorRunner::initMonitoring()
Expand Down
4 changes: 2 additions & 2 deletions Framework/src/PostProcessingRunner.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ std::unique_ptr<DatabaseInterface> PostProcessingRunner::configureDatabase(std::
{
auto database = DatabaseFactory::create(dbConfig.at("implementation"));
database->connect(dbConfig);
ILOG(Info, Support) << name << " database that is going to be used > Implementation : " << dbConfig.at("implementation") << " / "
<< " Host : " << dbConfig.at("host") << ENDM;
ILOG(Info, Devel) << name << " database that is going to be used > Implementation : " << dbConfig.at("implementation") << " / "
<< " Host : " << dbConfig.at("host") << ENDM;
return database;
}

Expand Down

0 comments on commit 6564cc8

Please sign in to comment.