summaryrefslogtreecommitdiff
path: root/heartbeatclient.c
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2010-01-13 11:34:30 (GMT)
committerChristian Pointner <equinox@helsinki.at>2010-01-13 11:34:30 (GMT)
commitfc6cdc4904033561357d82e900d6e36b0e391125 (patch)
tree9f9327059184615161d11b0bdb3ebfa7a487631b /heartbeatclient.c
parent68194820226407465d2ad10dff69954485eb200c (diff)
print return code when return with error
Diffstat (limited to 'heartbeatclient.c')
-rw-r--r--heartbeatclient.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/heartbeatclient.c b/heartbeatclient.c
index 7c89248..e3b9e8e 100644
--- a/heartbeatclient.c
+++ b/heartbeatclient.c
@@ -421,7 +421,7 @@ int main(int argc, char* argv[])
if(!ret)
log_printf(NOTICE, "normal shutdown");
else if(ret < 0)
- log_printf(NOTICE, "shutdown after error");
+ log_printf(NOTICE, "shutdown after error (code %d)", ret);
else
log_printf(NOTICE, "shutdown after signal");