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

Method logToolStarted

src/openms_gui/source/VISUAL/TOPPASScene.cpp:1353–1373  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1351 }
1352
1353 void TOPPASScene::logToolStarted()
1354 {
1355 TOPPASToolVertex* tv = qobject_cast<TOPPASToolVertex*>(QObject::sender());
1356 if (tv)
1357 {
1358 String text = tv->getName();
1359 String type = tv->getType();
1360 if (!type.empty())
1361 {
1362 text += " (" + type + ")";
1363 }
1364 text += " started. Processing ...";
1365
1366 if (!gui_)
1367 {
1368 std::cout << '\n' << text << std::endl;
1369 }
1370
1371 writeToLogFile_(text.toQString());
1372 }
1373 }
1374
1375 void TOPPASScene::logToolFinished()
1376 {

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