Exemplo n.º 1
0
 def error(self, format, *args):
     if _canShortcutLogging(self.logCategory, ERROR):
         return
     doLog(ERROR,
           self.logObjectName(),
           self.logCategory,
           format,
           self.logFunction(*args),
           where=-2)
Exemplo n.º 2
0
 def error(self, format, *args):
     if _canShortcutLogging(self.logCategory, ERROR):
         return
     doLog(ERROR, self.logObjectName(), self.logCategory,
         format, self.logFunction(*args), where=-2)
Exemplo n.º 3
0
 def error(self, *args):
     if _canShortcutLogging(self.logCategory, ERROR):
         return
     _errorObject(self.logObjectName(), self.logCategory,
         *self.logFunction(*args))