Index: sources/gui/guiglobals.cpp =================================================================== diff -u -r9cc1608f615e66d0f1c3a022aa6d19579d76b241 -r61d776c2405c22848f1182cba903477d44e7163f --- sources/gui/guiglobals.cpp (.../guiglobals.cpp) (revision 9cc1608f615e66d0f1c3a022aa6d19579d76b241) +++ sources/gui/guiglobals.cpp (.../guiglobals.cpp) (revision 61d776c2405c22848f1182cba903477d44e7163f) @@ -73,7 +73,7 @@ // but Qt needs them to be registered to be able to use them in between threads queue // by their metadata information. REGISTER_MODEL_METATYPES - LOG_DEBUG(__FUNCTION__); + LOG_DEBUG("Models Registered"); } /*! @@ -86,7 +86,7 @@ qmlRegisterUncreatableType ("Gui.Actions", 0, 1, "GuiActions", QStringLiteral("Used only for enumerations no need to have an object")); REGISTER_VIEW_TYPES - LOG_DEBUG(__FUNCTION__); + LOG_DEBUG("Views Registered"); } /*! @@ -116,9 +116,9 @@ // coco end }, Qt::QueuedConnection ); - LOG_DEBUG(__FUNCTION__); + LOG_DEBUG("QQuickView Starting"); _viewer->setSource(QStringLiteral("qrc:/main.qml")); - LOG_DEBUG("Done"); + LOG_DEBUG("QQuickView started"); return true; } }