I seem to recall having to change the debug level to solve this issue. If that doesn't work I am out of ideas.
Ed Caspersen On Fri, Jan 25, 2013 at 3:29 PM, Christopher Evans <[email protected]>wrote: > Thanks Ed, I followed some tutorials on teh internets and deleted them > from the logger manager, but still it happens. They are not in the list > when I query though. I will look at adjusting the debug level. > > import logging > for logger in logging.Logger.manager.loggerDict.keys(): > delMe = ['PyQt4.uic.uiparser', 'PyQt4.uic.Compiler.qobjectcreator', > 'PyQt4.uic.Compiler', 'PyQt4.uic.properties', 'PyQt4.uic'] > if logger in delMe: del logging.Logger.manager.loggerDict[logger] > > > On Fri, Jan 25, 2013 at 6:57 PM, Ed Caspersen <[email protected]>wrote: > >> 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]. >> >> >> > > > > -- > 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 unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected].
