Skip to content

Commit f9f712f

Browse files
committed
Update EPN stderr LOG tool, disable property query for test
1 parent 18112bc commit f9f712f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Utilities/EPNMonitoring/src/EPNstderrMonitor.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,12 +221,12 @@ struct EPNstderrMonitor : fair::mq::Device {
221221
std::string path = ".";
222222
bool infoLogger = fConfig->GetProperty<int>("infologger");
223223
bool dds = false;
224-
if (fConfig->Count("plugin")) {
224+
/* if (fConfig->Count("plugin")) {
225225
const auto& plugins = fConfig->GetProperty<std::vector<std::string>>("plugin");
226-
bool dds = std::find(plugins.begin(), plugins.end(), "ODC") != plugins.end();
226+
dds = std::find(plugins.begin(), plugins.end(), "ODC") != plugins.end();
227227
}
228-
229-
bool runNumber = dds ? atoi(fConfig->GetProperty<std::string>("runNumber").c_str()) : 0;
228+
int runNumber = dds ? atoi(fConfig->GetProperty<std::string>("runNumber").c_str()) : 0;*/
229+
int runNumber = 0;
230230
std::string partition = "";
231231
gEPNMonitor = std::make_unique<EPNMonitor>(path, infoLogger, runNumber, partition);
232232
}

0 commit comments

Comments
 (0)