Currently only the rpc call, but not its description (which also shows
the argument) is logged. We change this to log failmsg too, and this
also silences a warning.
---
lib/jqueue.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/jqueue.py b/lib/jqueue.py
index ec2f52a..6e576b0 100644
--- a/lib/jqueue.py
+++ b/lib/jqueue.py
@@ -747,8 +747,8 @@ class JobQueue(object):
msg = result[node].fail_msg
if msg:
failed.append(node)
- logging.error("RPC call %s failed on node %s: %s",
- result[node].call, node, msg)
+ logging.error("RPC call %s (%s) failed on node %s: %s",
+ result[node].call, failmsg, node, msg)
else:
success.append(node)
--
1.6.5.7