Skip to content

Commit

Permalink
log formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
joalx committed Jan 4, 2019
1 parent 1a9e9e8 commit 8d503ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/WebMainUI.cpp
Expand Up @@ -977,7 +977,7 @@ void WebMainUI::initOperatorDashboard(void)
auto loadViewOut = loadView(view.path);
if (! loadViewOut.first) {
CORE_LOG("error", tr("%1: %2").arg(QString(view.name.c_str()), loadViewOut.second).toStdString());
failedViews.append(" ").append(view.name);
failedViews.append(failedViews.empty()? "": ", ").append(view.name);
continue;
}

Expand Down

0 comments on commit 8d503ee

Please sign in to comment.