![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
\inmodule QtCore More...
#include <qlogging.h>
Public Attributes | |
void void Q_DECL_COLD_FUNCTION void Q_DECL_COLD_FUNCTION void QT_MESSAGE_LOGGER_NORETURN Q_DECL_COLD_FUNCTION void typedef const QLoggingCategory &(* | CategoryFunction )() |
This is a typedef for a pointer to a function with the following signature: |
\inmodule QtCore
The QMessageLogger class generates log messages.
QMessageLogger is used to generate messages for the Qt logging framework. Usually one uses it through qDebug(), qInfo(), qWarning(), qCritical, or qFatal() functions, which are actually macros: For example qDebug() expands to QMessageLogger(FILE, LINE, Q_FUNC_INFO).debug() for debug builds, and QMessageLogger(0, 0, 0).debug() for release builds.
One example of direct use is to forward errors that stem from a scripting language, e.g. QML:
Definition at line 72 of file qlogging.h.
|
inlineconstexpr |
Constructs a default QMessageLogger.
See the other constructors to specify context information.
Definition at line 76 of file qlogging.h.
|
inlineconstexpr |
Constructs a QMessageLogger to record log messages for file at line in function.
The is equivalent to QMessageLogger(file, line, function, "default")
Definition at line 77 of file qlogging.h.
|
inlineconstexpr |
Constructs a QMessageLogger to record category messages for file at line in function.
Definition at line 79 of file qlogging.h.
QDebug QMessageLogger::critical | ( | ) | const |
Logs a critical message using a QDebug stream.
Definition at line 805 of file qlogging.cpp.
Q_DECL_COLD_FUNCTION QDebug QMessageLogger::critical | ( | CategoryFunction | catFunc | ) | const |
void void void void Q_DECL_COLD_FUNCTION void Q_DECL_COLD_FUNCTION void Q_DECL_COLD_FUNCTION void Q_DECL_COLD_FUNCTION void QMessageLogger::critical | ( | CategoryFunction | catFunc, |
const char * | msg, | ||
... ) const |
void QMessageLogger::critical | ( | const char * | msg, |
... ) const |
Logs a critical message specified with format msg.
Additional parameters, specified by msg, may be used.
Definition at line 748 of file qlogging.cpp.
QDebug QMessageLogger::critical | ( | const QLoggingCategory & | cat | ) | const |
Logs a critical message into category cat using a QDebug stream.
Definition at line 819 of file qlogging.cpp.
void QMessageLogger::critical | ( | const QLoggingCategory & | cat, |
const char * | msg, | ||
... ) const |
Logs a critical message specified with format msg for the context cat.
Additional parameters, specified by msg, may be used.
Definition at line 764 of file qlogging.cpp.
QDebug QMessageLogger::debug | ( | ) | const |
Logs a debug message using a QDebug stream.
Definition at line 511 of file qlogging.cpp.
QDebug QMessageLogger::debug | ( | CategoryFunction | catFunc | ) | const |
void void QMessageLogger::debug | ( | CategoryFunction | catFunc, |
const char * | msg, | ||
... ) const |
void QMessageLogger::debug | ( | const char * | msg, |
... ) const |
Logs a debug message specified with format msg.
Additional parameters, specified by msg, may be used.
Definition at line 421 of file qlogging.cpp.
QDebug QMessageLogger::debug | ( | const QLoggingCategory & | cat | ) | const |
Logs a debug message into category cat using a QDebug stream.
Definition at line 525 of file qlogging.cpp.
void QMessageLogger::debug | ( | const QLoggingCategory & | cat, |
const char * | msg, | ||
... ) const |
Logs a debug message specified with format msg for the context cat.
Additional parameters, specified by msg, may be used.
Definition at line 469 of file qlogging.cpp.
QDebug QMessageLogger::fatal | ( | ) | const |
Q_DECL_COLD_FUNCTION QDebug QMessageLogger::fatal | ( | CategoryFunction | catFunc | ) | const |
|
noexcept |
|
noexcept |
Logs a fatal message specified with format msg.
Additional parameters, specified by msg, may be used.
Definition at line 896 of file qlogging.cpp.
QDebug QMessageLogger::fatal | ( | const QLoggingCategory & | cat | ) | const |
Logs a fatal message into category cat using a QDebug stream.
Definition at line 931 of file qlogging.cpp.
|
noexcept |
Logs a fatal message specified with format msg for the context cat.
Additional parameters, specified by msg, may be used.
Definition at line 852 of file qlogging.cpp.
QDebug QMessageLogger::info | ( | ) | const |
Logs an informational message using a QDebug stream.
Definition at line 600 of file qlogging.cpp.
QDebug QMessageLogger::info | ( | CategoryFunction | catFunc | ) | const |
void void void void QMessageLogger::info | ( | CategoryFunction | catFunc, |
const char * | msg, | ||
... ) const |
QDebug QMessageLogger::info | ( | const QLoggingCategory & | cat | ) | const |
Logs an informational message into the category cat using a QDebug stream.
Definition at line 614 of file qlogging.cpp.
void QMessageLogger::info | ( | const QLoggingCategory & | cat, |
const char * | msg, | ||
... ) const |
Logs an informational message specified with format msg for the context cat.
Additional parameters, specified by msg, may be used.
Definition at line 557 of file qlogging.cpp.
|
inlinenoexcept |
Ignores logging output
QDebug QMessageLogger::warning | ( | ) | const |
Logs a warning message using a QDebug stream.
Definition at line 703 of file qlogging.cpp.
Q_DECL_COLD_FUNCTION QDebug QMessageLogger::warning | ( | CategoryFunction | catFunc | ) | const |
void void void void Q_DECL_COLD_FUNCTION void Q_DECL_COLD_FUNCTION void QMessageLogger::warning | ( | CategoryFunction | catFunc, |
const char * | msg, | ||
... ) const |
void QMessageLogger::warning | ( | const char * | msg, |
... ) const |
Logs a warning message specified with format msg.
Additional parameters, specified by msg, may be used.
Definition at line 646 of file qlogging.cpp.
QDebug QMessageLogger::warning | ( | const QLoggingCategory & | cat | ) | const |
Logs a warning message into category cat using a QDebug stream.
Definition at line 716 of file qlogging.cpp.
void QMessageLogger::warning | ( | const QLoggingCategory & | cat, |
const char * | msg, | ||
... ) const |
Logs a warning message specified with format msg for the context cat.
Additional parameters, specified by msg, may be used.
Definition at line 662 of file qlogging.cpp.
void void Q_DECL_COLD_FUNCTION void Q_DECL_COLD_FUNCTION void QT_MESSAGE_LOGGER_NORETURN Q_DECL_COLD_FUNCTION void typedef const QLoggingCategory &(* QMessageLogger::CategoryFunction) () |
This is a typedef for a pointer to a function with the following signature:
The Q_DECLARE_LOGGING_CATEGORY
macro generates a function declaration with this signature, and Q_LOGGING_CATEGORY
generates its definition.
Definition at line 93 of file qlogging.h.