I want to write some log in the log tab of processing algorithm User Interface.
I tried this :
from qgis.core import QgsMessageLog
QgsMessageLog.logMessage("test")
but when I launch the script "test" is not logged.
How to write a log in the processing User Interface ?
the processing guide log's chapter doesn't tell much about writing a log in this tab.
If i use :
from qgis.core import QgsMessageLog
QgsMessageLog.logMessage("test", tag="Processing", level=QgsMessageLog.INFO)
the log result is wrote under the console log panel called "Processing", but not in the processing GUI log tab.


QgsProcessingFeedback.pushInfo('a message')I get the error "TypeError: QgsProcessingFeedback.pushInfo(): first argument of unbound method must have type 'QgsProcessingFeedback'" – matt wilkie Jan 30 '21 at 21:56feedback.pushInfo('This is a log message')? – onietosi Feb 01 '21 at 09:01