The QMessageLogger class generates log messages. 更多...
头: | #include <QMessageLogger> |
CMake: |
find_package(Qt6 COMPONENTS Core REQUIRED)
target_link_libraries(mytarget PRIVATE Qt6::Core) |
qmake: | QT += core |
Since: | Qt 5.0 |
CategoryFunction |
QMessageLogger (const char * file , int line , const char * function , const char * category ) | |
QMessageLogger (const char * file , int line , const char * function ) | |
QMessageLogger () | |
void | critical (const char * msg , ...) const |
void | critical (const QLoggingCategory & cat , const char * msg , ...) const |
void | critical (QMessageLogger::CategoryFunction catFunc , const char * msg , ...) const |
QDebug | critical () const |
QDebug | critical (const QLoggingCategory & cat ) const |
QDebug | critical (QMessageLogger::CategoryFunction catFunc ) const |
void | debug (const char * msg , ...) const |
void | debug (const QLoggingCategory & cat , const char * msg , ...) const |
void | debug (QMessageLogger::CategoryFunction catFunc , const char * msg , ...) const |
QDebug | debug () const |
QDebug | debug (const QLoggingCategory & cat ) const |
QDebug | debug (QMessageLogger::CategoryFunction catFunc ) const |
void | fatal (const char * msg , ...) const |
void | info (const char * msg , ...) const |
void | info (const QLoggingCategory & cat , const char * msg , ...) const |
void | info (QMessageLogger::CategoryFunction catFunc , const char * msg , ...) const |
QDebug | info () const |
QDebug | info (const QLoggingCategory & cat ) const |
QDebug | info (QMessageLogger::CategoryFunction catFunc ) const |
void | warning (const char * msg , ...) const |
void | warning (const QLoggingCategory & cat , const char * msg , ...) const |
void | warning (QMessageLogger::CategoryFunction catFunc , const char * msg , ...) const |
QDebug | warning () const |
QDebug | warning (const QLoggingCategory & cat ) const |
QDebug | warning (QMessageLogger::CategoryFunction catFunc ) const |
QMessageLogger is used to generate messages for the Qt logging framework. Usually one uses it through qDebug (), qInfo (), qWarning (), qCritical ,或 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:
void statusChanged(QDeclarativeComponent::Status status) { if (status == QDeclarativeComponent::Error) { foreach (const QDeclarativeError &error, component->errors()) { const QByteArray file = error.url().toEncoded(); QMessageLogger(file.constData(), error.line(), 0).debug() << error.description(); } } }
另请参阅 QMessageLogContext , qDebug (), qInfo (), qWarning (), qCritical (),和 qFatal ().
[since 5.3]
QMessageLogger::
CategoryFunction
这是采用以下签名的函数指针的 typedef:
const QLoggingCategory &category();
A function which this signature is generated by Q_DECLARE_LOGGING_CATEGORY , Q_LOGGING_CATEGORY .
This typedef was introduced in Qt 5.3.
Constructs a QMessageLogger to record category messages for file at line in function .
Constructs a QMessageLogger to record log messages for file at line in function . The is equivalent to QMessageLogger(file, line, function, "default")
Constructs a default QMessageLogger. See the other constructors to specify context information.
Logs a critical message specified with format msg . Additional parameters, specified by msg , may be used.
另请参阅 qCritical ().
[since 5.3]
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.
该函数在 Qt 5.3 引入。
另请参阅 qCCritical ().
[since 5.3]
void
QMessageLogger::
critical
(
QMessageLogger::CategoryFunction
catFunc
, const
char
*
msg
, ...) const
Logs a critical message specified with format msg for the context returned by catFunc . Additional parameters, specified by msg , may be used.
该函数在 Qt 5.3 引入。
另请参阅 qCCritical ().
Logs a critical message using a QDebug stream
[since 5.3]
QDebug
QMessageLogger::
critical
(const
QLoggingCategory
&
cat
) const
Logs a critical message into category cat 使用 QDebug stream.
该函数在 Qt 5.3 引入。
另请参阅 qCCritical () 和 QDebug .
[since 5.3]
QDebug
QMessageLogger::
critical
(
QMessageLogger::CategoryFunction
catFunc
) const
Logs a critical message into category returned by catFunc 使用 QDebug stream.
该函数在 Qt 5.3 引入。
另请参阅 qCCritical () 和 QDebug .
Logs a debug message specified with format msg . Additional parameters, specified by msg , may be used.
另请参阅 qDebug ().
[since 5.3]
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.
该函数在 Qt 5.3 引入。
另请参阅 qCDebug ().
[since 5.3]
void
QMessageLogger::
debug
(
QMessageLogger::CategoryFunction
catFunc
, const
char
*
msg
, ...) const
Logs a debug message specified with format msg for the context returned by catFunc . Additional parameters, specified by msg , may be used.
该函数在 Qt 5.3 引入。
另请参阅 qCDebug ().
Logs a debug message using a QDebug stream
[since 5.3]
QDebug
QMessageLogger::
debug
(const
QLoggingCategory
&
cat
) const
Logs a debug message into category cat 使用 QDebug stream.
该函数在 Qt 5.3 引入。
[since 5.3]
QDebug
QMessageLogger::
debug
(
QMessageLogger::CategoryFunction
catFunc
) const
Logs a debug message into category returned by catFunc 使用 QDebug stream.
该函数在 Qt 5.3 引入。
Logs a fatal message specified with format msg . Additional parameters, specified by msg , may be used.
另请参阅 qFatal ().
[since 5.5]
void
QMessageLogger::
info
(const
char
*
msg
, ...) const
Logs an informational message specified with format msg . Additional parameters, specified by msg , may be used.
该函数在 Qt 5.5 引入。
另请参阅 qInfo ().
[since 5.5]
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.
该函数在 Qt 5.5 引入。
另请参阅 qCInfo ().
[since 5.5]
void
QMessageLogger::
info
(
QMessageLogger::CategoryFunction
catFunc
, const
char
*
msg
, ...) const
Logs an informational message specified with format msg for the context returned by catFunc . Additional parameters, specified by msg , may be used.
该函数在 Qt 5.5 引入。
另请参阅 qCInfo ().
[since 5.5]
QDebug
QMessageLogger::
info
() const
Logs an informational message using a QDebug stream.
该函数在 Qt 5.5 引入。
[since 5.5]
QDebug
QMessageLogger::
info
(const
QLoggingCategory
&
cat
) const
Logs an informational message into the category cat 使用 QDebug stream.
该函数在 Qt 5.5 引入。
[since 5.5]
QDebug
QMessageLogger::
info
(
QMessageLogger::CategoryFunction
catFunc
) const
Logs an informational message into category returned by catFunc 使用 QDebug stream.
该函数在 Qt 5.5 引入。
Logs a warning message specified with format msg . Additional parameters, specified by msg , may be used.
另请参阅 qWarning ().
[since 5.3]
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.
该函数在 Qt 5.3 引入。
另请参阅 qCWarning ().
[since 5.3]
void
QMessageLogger::
warning
(
QMessageLogger::CategoryFunction
catFunc
, const
char
*
msg
, ...) const
Logs a warning message specified with format msg for the context returned by catFunc . Additional parameters, specified by msg , may be used.
该函数在 Qt 5.3 引入。
另请参阅 qCWarning ().
Logs a warning message using a QDebug stream
Logs a warning message into category cat 使用 QDebug stream.
[since 5.3]
QDebug
QMessageLogger::
warning
(
QMessageLogger::CategoryFunction
catFunc
) const
Logs a warning message into category returned by catFunc 使用 QDebug stream.
该函数在 Qt 5.3 引入。