From: Stephen Soltesz Date: Mon, 16 Mar 2009 16:42:06 +0000 (+0000) Subject: more meaningful exception messages to help track down problems. X-Git-Tag: Monitor-1.0-16~4 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=842a7a17574e6fec92f219ceb35332a1bcafa3f7;hp=12c56cc4dee09279b3f35650c3f37f69f65f3705;p=monitor.git more meaningful exception messages to help track down problems. --- diff --git a/reboot.py b/reboot.py index ba75d78..67be293 100755 --- a/reboot.py +++ b/reboot.py @@ -332,7 +332,7 @@ class IPAL(PCUControl): print "Current status is '%s'" % ret if ret == '': - raise Exception("Status returned 'another session already open' %s : %s" % (node_port, ret)) + raise Exception("Status returned 'another session already open' on %s %s : %s" % (self.host, node_port, ret)) if node_port < len(ret): @@ -344,9 +344,9 @@ class IPAL(PCUControl): # down power_on = False else: - raise Exception("Unknown status for PCU socket %s : %s" % (node_port, ret)) + raise Exception("Unknown status for PCU %s socket %s : %s" % (self.host, node_port, ret)) else: - raise Exception("Mismatch between configured port and PCU status: %s %s" % (node_port, ret)) + raise Exception("Mismatch between configured port and PCU %s status: %s %s" % (self.host, node_port, ret)) if not dryrun: @@ -372,9 +372,9 @@ class IPAL(PCUControl): # down power_on = False else: - raise Exception("Unknown status for PCU socket %s : %s" % (node_port, ret)) + raise Exception("Unknown status for PCU %s socket %s : %s" % (self.host, node_port, ret)) else: - raise Exception("Mismatch between configured port and PCU status: %s %s" % (node_port, ret)) + raise Exception("Mismatch between configured port and PCU %s status: %s %s" % (self.host, node_port, ret)) if power_on: return 0