Revision 78fcfd43

b/lib/server/masterd.py
71 71
  """Log information about a recently submitted job.
72 72

  
73 73
  """
74
  op_summary = utils.CommaJoin(op.Summary() for op in ops)
75

  
74 76
  if status:
75
    logging.info("New job with id %s, summary: %s",
76
                 info, utils.CommaJoin(op.Summary() for op in ops))
77
    logging.info("New job with id %s, summary: %s", info, op_summary)
77 78
  else:
78 79
    logging.info("Failed to submit job, reason: '%s', summary: %s",
79
                 info, utils.CommaJoin(op.Summary() for op in ops))
80
                 info, op_summary)
80 81

  
81 82

  
82 83
class ClientRequestWorker(workerpool.BaseWorker):

Also available in: Unified diff