How to locate Qt log files
-
I want to check Qt Creator log, but could not locate one
Need to solve my previous topic issue:
https://forum.qt.io/topic/153544/qt-creator-ubuntu-v12-qt6-x86-64-gcc/3?_=1707013712902 -
I want to check Qt Creator log, but could not locate one
Need to solve my previous topic issue:
https://forum.qt.io/topic/153544/qt-creator-ubuntu-v12-qt6-x86-64-gcc/3?_=1707013712902Need to solve my previous topic issue:
Then do not start another thread without engaging with the first thread you you started.
I want to check Qt Creator log, but could not locate one
Qt Creator does not have a log file that is likely to help with your original problem. It does have an internal logging facility that you can see. It is documented and also the first hit on a Google search for me.
When Qt Creator builds a project all the compiler and linker output is presented to you in the "Compile Output" tab in the IDE. When Qt Creator runs a project's built executable then all the output that process send to the the standard streams goes either in to the "Application output" tab in the IDE, or into the separate terminal that was launched to start the program.How to locate Qt log files
Qt is a library and it does not have a log file.
A Qt-based application may use Qt library functions to generate a log file, but that is up to the application.