utility: turned of logging for scroll and focus messages

These messages added up to about 80% of all logs during use of the UI.
This commit is contained in:
Eberhard Graether
2016-03-11 15:29:13 +01:00
parent 47bf9bb7fa
commit f6e2821430
6 changed files with 24 additions and 2 deletions
+4 -1
View File
@@ -74,7 +74,10 @@ void MessageQueue::pushMessage(std::shared_ptr<MessageBase> message)
void MessageQueue::processMessage(std::shared_ptr<MessageBase> message, bool asNextTask)
{
LOG_INFO_STREAM_BARE(<< "send " << message->str());
if (message->isLogged())
{
LOG_INFO_STREAM_BARE(<< "send " << message->str());
}
if (m_sendMessagesAsTasks && message->sendAsTask())
{