File indexing completed on 2025-02-16 04:50:06
0001 /* 0002 SPDX-FileCopyrightText: 2015-2017 Krzysztof Nowicki <krissn@op.pl> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <QLoggingCategory> 0010 0011 Q_DECLARE_LOGGING_CATEGORY(EWSFAKE_LOG) 0012 0013 #define qCDebugNC(cat) qCDebug(cat).noquote() 0014 #define qCInfoNC(cat) qCInfo(cat).noquote() 0015 #define qCWarningNC(cat) qCWarning(cat).noquote() 0016 #define qCCriticalNC(cat) qCCritical(cat).noquote()