QMessageLogContext#
The QMessageLogContext class provides additional information about a log message. More…
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
The class provides information about the source code location a qDebug() , qInfo() , qWarning() , qCritical() or qFatal() message was generated.
Note
By default, this information is recorded only in debug builds. You can overwrite this explicitly by defining QT_MESSAGELOGCONTEXT or QT_NO_MESSAGELOGCONTEXT.
See also
QMessageLogger  QtMessageHandler  qInstallMessageHandler()
- class PySide6.QtCore.QMessageLogContext#
- PySide6.QtCore.QMessageLogContext(fileName, lineNumber, functionName, categoryName) - Parameters:
- lineNumber – int 
- functionName – str 
- categoryName – str 
- fileName – str 
 
 
- PySide6.QtCore.QMessageLogContext.version#
- PySide6.QtCore.QMessageLogContext.line#
- PySide6.QtCore.QMessageLogContext.file#
- PySide6.QtCore.QMessageLogContext.function#
- PySide6.QtCore.QMessageLogContext.category#