[Nagios-devel] [PATCH] base/commands: Log what went wrong when cmd

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
Guest

[Nagios-devel] [PATCH] base/commands: Log what went wrong when cmd

Post by Guest »

From: Robin Sonefors

The functionality to do so is right there, and the value of this
information is relatively high, so please print it.

Signed-off-by: Robin Sonefors
---
base/commands.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/base/commands.c b/base/commands.c
index b7b8ff4..7140283 100644
--- a/base/commands.c
+++ b/base/commands.c
@@ -252,8 +252,8 @@ int launch_command_file_worker(void) {
command_wproc->sd = sv[0];
ret = iobroker_register(nagios_iobs, command_wproc->sd, command_wproc, command_input_handler);
if (ret sd, nagios_iobs);
+ logit(NSLOG_RUNTIME_ERROR, TRUE, "Failed to register command file worker socket %d with io broker %p: %s\n",
+ command_wproc->sd, nagios_iobs, iobroker_strerror(ret));
goto err_ioc;
}
logit(NSLOG_INFO_MESSAGE, TRUE, "Successfully launched command file worker with pid %d\n",
--
1.7.11.7






This post was automatically imported from historical nagios-devel mailing list archives
Original poster: [email protected]
Locked