How to hide "qt.network.http2: stream 1 finished with error" message?
Unsolved
QML and Qt Quick
-
Hi,
I'm using a lot ofXMLHttpRequest
in my app. When request fail then I'm getting:
qt.network.http2: stream 1 finished with error <error message>
For example errors with status 401 (access token expired).
I know that request finished with error because I handle error statuses in my requests byrequest.status
etc. But this message is litter my console output and also application messages in Qt Creator. Is it possible to disable it? I'm very sensitive on such useless annoying garbage in outputs and would like to see real errors
Regards -
Hi,
If I am not mistaking, you should be able to do that through filtering of the logging category.
I recommend to not be too broad with that as you might hide other useful messages.