Index: main.cpp =================================================================== diff -u -r9cc1608f615e66d0f1c3a022aa6d19579d76b241 -r61d776c2405c22848f1182cba903477d44e7163f --- main.cpp (.../main.cpp) (revision 9cc1608f615e66d0f1c3a022aa6d19579d76b241) +++ main.cpp (.../main.cpp) (revision 61d776c2405c22848f1182cba903477d44e7163f) @@ -302,9 +302,9 @@ //! - Initialize the Qml Viewer and starts GUI int app_exec = -1; - LOG_DEBUG("GUI Starting"); + LOG_DEBUG("UI Initializing"); if ( startGui() ) { - LOG_DEBUG("GUI Started"); + LOG_DEBUG("UI Initialized"); app_exec = app.exec(); } Index: sources/canbus/messageinterpreter.cpp =================================================================== diff -u -r9cc1608f615e66d0f1c3a022aa6d19579d76b241 -r61d776c2405c22848f1182cba903477d44e7163f --- sources/canbus/messageinterpreter.cpp (.../messageinterpreter.cpp) (revision 9cc1608f615e66d0f1c3a022aa6d19579d76b241) +++ sources/canbus/messageinterpreter.cpp (.../messageinterpreter.cpp) (revision 61d776c2405c22848f1182cba903477d44e7163f) @@ -24,7 +24,7 @@ using namespace Can; -#define DEBUG_RECEIVE_SIGNAL(vID, vMODEL) qDebug() << vID << vMODEL; +#define DEBUG_RECEIVE_SIGNAL(vID, vMODEL) //qDebug() << vID << vMODEL; /*! * \brief MessageInterpreter::MessageInterpreter 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; } }