modernize: Remove custom Quassel-specific log macros
authorManuel Nickschas <sputnick@quassel-irc.org>
Sun, 14 Oct 2018 22:49:57 +0000 (00:49 +0200)
committerManuel Nickschas <sputnick@quassel-irc.org>
Sun, 18 Nov 2018 10:06:43 +0000 (11:06 +0100)
commit8c6448c2e0048389fbac9e2e9daf22b5b050d5b6
treeb3ed815b9bc270da9a142a0fd7d839844c6fc1bf
parent696edd3dc076cf52edd8bece9055c2b3ec9086d0
modernize: Remove custom Quassel-specific log macros

The quInfo(), quWarning(), quError() macros were introduced a long
time ago to provide custom log message handling, such as logging to
file or syslog. Such features have been directly supported for the
standard Qt log macros for a while now, using a global message handler.
The only reason for Quassel's custom macros to still exist was the
lack of an info log level prior to Qt 5.5.

As we can now rely on Qt 5.5 to be available, replace the custom
macros by Qt ones, and remove LogMessage which is no longer needed.
23 files changed:
src/client/clientauthhandler.cpp
src/common/CMakeLists.txt
src/common/expressionmatch.cpp
src/common/logmessage.cpp [deleted file]
src/common/logmessage.h [deleted file]
src/common/posixsignalwatcher.cpp
src/common/quassel.cpp
src/common/windowssignalwatcher.cpp
src/core/abstractsqlstorage.cpp
src/core/cipher.cpp
src/core/core.cpp
src/core/coreauthhandler.cpp
src/core/corebasichandler.cpp
src/core/coresession.cpp
src/core/coresessioneventprocessor.cpp
src/core/identserver.cpp
src/core/ldapauthenticator.cpp
src/core/postgresqlstorage.cpp
src/core/sqlauthenticator.cpp
src/core/sqlitestorage.cpp
src/core/sslserver.cpp
src/main/monoapplication.cpp
src/qtui/qtuiapplication.cpp