Skip to content

Commit 110c062

Browse files
committed
[Bindings] ADD debug log for qt.conf loading
1 parent b4f78aa commit 110c062

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

bindings/SofaGui/src/SofaPython3/SofaGui/Module_SofaGui.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,12 @@ PYBIND11_MODULE(Gui, m) {
7070
else
7171
{
7272
msg_warning("Sofa.Gui") << "Failed loading and/or customizing qt.conf from " << inputFilepath;
73+
74+
std::cout << "qt_resource_data:" << std::endl;
75+
for (int i = 0 ; i < qt_resource_data.size() ; ++i) {
76+
std::cout << qt_resource_data[i];
77+
}
78+
std::cout << std::endl;
7379
}
7480

7581
// This is needed to make sure the GuiMain library (libSofaGuiMain.so) is correctly

0 commit comments

Comments
 (0)