This looks like logging calls. From what I can see here there are2 logs being run - PyQt4.uic.properties - PyQt4.uic.uiparser
One way of accessing these logs is via the logger dictionary: import logging logging.Logger.manager.loggerDict.keys() # Result: ['PyQt4.uic.uiparser', 'PyQt4.uic.Compiler', 'PyQt4.uic.Compiler.qobjectcreator', 'PyQt4.uic.properties', 'PyQt4', 'PyQt4.uic'] # You might want to try changing the debug level of the loggers and seeing if that helps. Ed Caspersen On Fri, Jan 25, 2013 at 7:57 AM, Christopher Evans <[email protected]>wrote: > My google foo has failed me. When storing pyqt libs on the network we > always get this huge spam when the UI parser runs. Is there a way to have > this be silent? > > # PyQt4.uic.properties : setting property enabled # > # PyQt4.uic.properties : setting property text # > # PyQt4.uic.uiparser : push QCheckBox checkBox # > # PyQt4.uic.uiparser : pop widget QCheckBox checkBox # > # PyQt4.uic.uiparser : new topwidget self.tab_2 # > # PyQt4.uic.properties : setting property enabled # > # PyQt4.uic.uiparser : push QLineEdit lineEdit # > # PyQt4.uic.uiparser : pop widget QLineEdit lineEdit # > # PyQt4.uic.uiparser : new topwidget self.tab_2 # > # PyQt4.uic.uiparser : pop layout QHBoxLayout horizontalLayout_4 # > # PyQt4.uic.properties : setting property spacing # > # PyQt4.uic.uiparser : push QHBoxLayout horizontalLayout_3 # > # PyQt4.uic.properties : setting property enabled # > # PyQt4.uic.properties : setting property font # > # PyQt4.uic.properties : setting property text # > # PyQt4.uic.uiparser : push QPushButton checkoutBTN # > > -- > CE > > -- > You received this message because you are subscribed to the Google Groups > "Python Programming for Autodesk Maya" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > > > -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected].
