I built a little GUI app with QtDesigner in Python and I passed the app along to a few people in my team which are using Autodesk 360 + Autocad.
My app use the QFileDialog
command to get filenames, which is known to have a bug when Autodesk 360 is installed on the machine: link 1, link2 .
The bug: the console always returns the following errors when a file dialog is called:
log4cplus:ERROR No appenders could be found for logger (AdSyncNamespace).
log4cplus:ERROR Please initialize the log4cplus system properly.
The error is not critical as it doesn't change the processing, but I don't want any error message to pop like that.
Considering we will often distribute the app to people using Autodesk products daily and that the bug does not look like something that will be corrected soon, is it possible to ignore this error so that it does not show in the console ? Maybe by ignoring something during the build with py2exe
... I don't know where to search. Thanks !