File indexing completed on 2025-02-16 10:54:03
0001 /* 0002 SPDX-FileCopyrightText: 2015 Friedrich W. H. Kossebau <kossebau@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef HTMLIMPORT_DEBUG_H 0008 #define HTMLIMPORT_DEBUG_H 0009 0010 #include <QDebug> 0011 #include <QLoggingCategory> 0012 0013 0014 extern const QLoggingCategory &HTMLIMPORT_LOG(); 0015 0016 #define debugHtml qCDebug(HTMLIMPORT_LOG) 0017 #define warnHtml qCWarning(HTMLIMPORT_LOG) 0018 #define errorHtml qCCritical(HTMLIMPORT_LOG) 0019 0020 #endif