I built a small graphical application with QtDesigner in Python, and I passed the application on to several people on my team who use Autodesk 360 + Autocad.
My application uses the command QFileDialogto retrieve file names that are known to have an error when installing Autodesk 360 on a machine: link 1 , link2 .
Error: the console always returns the following errors when the file dialog box 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, because it does not change the processing, but I do not want any error message to appear like this.
Given that we will often distribute the application to people who use Autodesk products daily, and that the error does not look like it will be fixed in the near future, can we ignore this error so that it does not appear in the console? Perhaps ignoring something during build with py2exe... I don't know where to look. Thank!
source
share