Skip to content
Snippets Groups Projects
Commit 85bb6ada authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Demote a warning to a message

parent 73529e9b
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,8 @@ void ScenarioItem::update()
std::string status = application->getStatus();
if (!application->getFound())
{
ARMARX_WARNING << "Application '" + application->getExecutableAbsPath() + "' not found!";
// Status is shown as "Missing", no need for a warning, info is enough.
ARMARX_INFO << "Application '" + application->getExecutableAbsPath() + "' not found!";
m_itemData[4] = QVariant(QString::fromStdString(ApplicationStatus::Missing));
}
......
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