diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-05-01 01:54:53 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-01 01:54:53 +0900 |
commit | 096a05d59654244f7c928dc5f2537a760070a577 (patch) | |
tree | 1ee17f9016b0f333c08cf5d0eb0c8a8ab86a8573 /debug.cpp | |
parent | 9a13bbfd8a800712d0a2fcc4887c8d4115d06d4e (diff) | |
parent | 3fa1ee3c6b04d0793ccca3f903797625f7a08d03 (diff) | |
download | libquotient-096a05d59654244f7c928dc5f2537a760070a577.tar.gz libquotient-096a05d59654244f7c928dc5f2537a760070a577.zip |
Merge pull request #61 from elvisangelaccio/qloggingcategory
Port to categorized logging
Diffstat (limited to 'debug.cpp')
-rw-r--r-- | debug.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/debug.cpp b/debug.cpp new file mode 100644 index 00000000..b80438e5 --- /dev/null +++ b/debug.cpp @@ -0,0 +1,30 @@ +/****************************************************************************** + * Copyright (C) 2017 Elvis Angelaccio <elvid.angelaccio@kde.org> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "util.h" + +#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0) +Q_LOGGING_CATEGORY(MAIN, "libqmatrixclient.main", QtInfoMsg) +Q_LOGGING_CATEGORY(EVENTS, "libqmatrixclient.events", QtInfoMsg) +Q_LOGGING_CATEGORY(JOBS, "libqmatrixclient.jobs", QtInfoMsg) +#else +Q_LOGGING_CATEGORY(MAIN, "libqmatrixclient.main") +Q_LOGGING_CATEGORY(EVENTS, "libqmatrixclient.events") +Q_LOGGING_CATEGORY(JOBS, "libqmatrixclient.jobs") +#endif + |