File indexing completed on 2025-03-16 10:52:55

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 LATEX_DEBUG_H
0008 #define LATEX_DEBUG_H
0009 
0010 #include <QDebug>
0011 #include <QLoggingCategory>
0012 
0013 
0014 extern const QLoggingCategory &LATEX_LOG();
0015 
0016 #define debugLatex qCDebug(LATEX_LOG)
0017 #define warnLatex qCWarning(LATEX_LOG)
0018 #define errorLatex qCCritical(LATEX_LOG)
0019 
0020 #endif