Skip to content
Snippets Groups Projects
Commit ed20271f authored by Riccardo Maria Bianchi's avatar Riccardo Maria Bianchi :sunny:
Browse files

Change INFO to ERROR message when table is not found in SQLite input file

parent c0f22a69
No related branches found
No related tags found
4 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!49298Adding a new TileDetectorFactoryLite to build Tile geo from SQLite
......@@ -43,7 +43,7 @@ void SqliteRecordset::getData(sqlite3* db, const std::string& nodeName)
sqlite3_stmt* stTable{nullptr};
int rc = sqlite3_prepare_v2(db, sql.str().c_str(), -1, &stTable, NULL);
if(rc!=SQLITE_OK) {
ATH_MSG_INFO(m_nodeName << " table is not found in the database");
ATH_MSG_ERROR(m_nodeName << " table is not found in the database");
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment