You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After years of looking for a cause or at least a working solution, I have finally been pointed in the right direction. This whole time Qt apps were trying to log into system journal, and not to stdout/stderr. It can be reverted by simply setting QT_LOGGING_TO_CONSOLE environment variable, as suggested in QTCREATORBUG-24756 (check out linked issues and mail thread as well). Note that QT_LOGGING_TO_CONSOLE does NOT appear in the documentation pages linked above.
I filled as issue QTCREATORBUG-25935 for Qt Creator to set it on by default when running apps from IDE.
If I knew it at the time of #86, I'd rather pass logs from Rust to Qt side. But oh well… Now we have a reason to implement it too.
The text was updated successfully, but these errors were encountered:
Originally posted by @ogoffart in #86 (comment)
After years of looking for a cause or at least a working solution, I have finally been pointed in the right direction. This whole time Qt apps were trying to log into system journal, and not to stdout/stderr. It can be reverted by simply setting
QT_LOGGING_TO_CONSOLE
environment variable, as suggested in QTCREATORBUG-24756 (check out linked issues and mail thread as well). Note thatQT_LOGGING_TO_CONSOLE
does NOT appear in the documentation pages linked above.I filled as issue QTCREATORBUG-25935 for Qt Creator to set it on by default when running apps from IDE.
If I knew it at the time of #86, I'd rather pass logs from Rust to Qt side. But oh well… Now we have a reason to implement it too.
The text was updated successfully, but these errors were encountered: