Revision e51ca051

b/lib/rapi/baserlib.py
219 219
    raise http.HttpBadGateway("Master seems to unreachable: %s" % str(err))
220 220

  
221 221

  
222
def FeedbackFn(ts, log_type, log_msg): # pylint: disable-msg=W0613
223
  """Feedback logging function for http case.
222
def FeedbackFn(msg):
223
  """Feedback logging function for jobs.
224 224

  
225 225
  We don't have a stdout for printing log messages, so log them to the
226 226
  http log at least.
227 227

  
228
  @param ts: the timestamp (unused)
228
  @param msg: the message
229 229

  
230 230
  """
231
  (_, log_type, log_msg) = msg
231 232
  logging.info("%s: %s", log_type, log_msg)
232 233

  
233 234

  

Also available in: Unified diff