Exemplo n.º 1
0
 def appendTimeLog(self, name, runtime, severity):
   msg = Constants.toStringRuntime(name, Constants.RUNTIME, runtime, severity)
   try:
     self.appendLog(msg, severity)
   except Exception as error:
     monitorLog.logError("Failure to append Count Log: " + msg, `error`)
     raise Exception("Failure to append Count log: " + msg)
 def appendTimeLog(self, name, metricType, runtime):
   msg = Constants.toStringRuntime(name, metricType, runtime)
   self.appendLog(msg)