![]() |
Qt 6.x
The Qt SDK
|
#include <QtCore/qglobal.h>
#include <QtCore/qdebug.h>
Go to the source code of this file.
Classes | |
class | QLoggingCategory |
\inmodule QtCore More... | |
Macros | |
#define | Q_DECLARE_LOGGING_CATEGORY(name) const QLoggingCategory &name(); |
#define | Q_DECLARE_EXPORTED_LOGGING_CATEGORY(name, export_macro) export_macro Q_DECLARE_LOGGING_CATEGORY(name) |
#define | Q_LOGGING_CATEGORY(name, ...) |
#define | QT_MESSAGE_LOGGER_COMMON(category, level) |
#define | qCDebug(category, ...) QT_MESSAGE_LOGGER_COMMON(category, QtDebugMsg).debug(__VA_ARGS__) |
#define | qCInfo(category, ...) QT_MESSAGE_LOGGER_COMMON(category, QtInfoMsg).info(__VA_ARGS__) |
#define | qCWarning(category, ...) QT_MESSAGE_LOGGER_COMMON(category, QtWarningMsg).warning(__VA_ARGS__) |
#define | qCCritical(category, ...) QT_MESSAGE_LOGGER_COMMON(category, QtCriticalMsg).critical(__VA_ARGS__) |
#define | qCFatal(category, ...) QT_MESSAGE_LOGGER_COMMON(category, QtFatalMsg).fatal(__VA_ARGS__) |
#define Q_DECLARE_EXPORTED_LOGGING_CATEGORY | ( | name, | |
export_macro | |||
) | export_macro Q_DECLARE_LOGGING_CATEGORY(name) |
Definition at line 109 of file qloggingcategory.h.
#define Q_DECLARE_LOGGING_CATEGORY | ( | name | ) | const QLoggingCategory &name(); |
Definition at line 106 of file qloggingcategory.h.
#define Q_LOGGING_CATEGORY | ( | name, | |
... | |||
) |
Definition at line 112 of file qloggingcategory.h.
#define qCCritical | ( | category, | |
... | |||
) | QT_MESSAGE_LOGGER_COMMON(category, QtCriticalMsg).critical(__VA_ARGS__) |
Definition at line 126 of file qloggingcategory.h.
#define qCDebug | ( | category, | |
... | |||
) | QT_MESSAGE_LOGGER_COMMON(category, QtDebugMsg).debug(__VA_ARGS__) |
Definition at line 123 of file qloggingcategory.h.
#define qCFatal | ( | category, | |
... | |||
) | QT_MESSAGE_LOGGER_COMMON(category, QtFatalMsg).fatal(__VA_ARGS__) |
Definition at line 127 of file qloggingcategory.h.
#define qCInfo | ( | category, | |
... | |||
) | QT_MESSAGE_LOGGER_COMMON(category, QtInfoMsg).info(__VA_ARGS__) |
Definition at line 124 of file qloggingcategory.h.
#define qCWarning | ( | category, | |
... | |||
) | QT_MESSAGE_LOGGER_COMMON(category, QtWarningMsg).warning(__VA_ARGS__) |
Definition at line 125 of file qloggingcategory.h.
Definition at line 119 of file qloggingcategory.h.