We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5e7320 commit 5414653Copy full SHA for 5414653
src/mainReadout.cxx
@@ -198,7 +198,7 @@ int main(int argc, char* argv[])
198
// cleanup the memory range
199
b->clear();
200
// add bank to list centrally managed
201
- theMemoryBankManager.addBank(b);
+ theMemoryBankManager.addBank(b,kName);
202
theLog.log("Bank %s added",kName.c_str());
203
}
204
@@ -297,6 +297,11 @@ int main(int argc, char* argv[])
297
nEquipmentFailures++;
298
continue;
299
300
+ catch (int errNo) {
301
+ theLog.log("Failed to configure equipment %s : error #%d",kName.c_str(),errNo);
302
+ nEquipmentFailures++;
303
+ continue;
304
+ }
305
catch (...) {
306
theLog.log("Failed to configure equipment %s",kName.c_str());
307
0 commit comments