MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / logToolFinished

Method logToolFinished

src/openms_gui/source/VISUAL/TOPPASScene.cpp:1375–1395  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1373 }
1374
1375 void TOPPASScene::logToolFinished()
1376 {
1377 TOPPASToolVertex* tv = qobject_cast<TOPPASToolVertex*>(QObject::sender());
1378 if (tv)
1379 {
1380 String text = tv->getName();
1381 String type = tv->getType();
1382 if (!type.empty())
1383 {
1384 text += " (" + type + ")";
1385 }
1386 text += " finished!";
1387
1388 if (!gui_)
1389 {
1390 std::cout << '\n' << text << std::endl;
1391 }
1392
1393 writeToLogFile_(text.toQString());
1394 }
1395 }
1396
1397 void TOPPASScene::logToolFailed()
1398 {

Callers

nothing calls this directly

Calls 4

getNameMethod · 0.45
getTypeMethod · 0.45
emptyMethod · 0.45
toQStringMethod · 0.45

Tested by

no test coverage detected