@cryptotaxi247 / netdata-1 / commits / a7a9cc8cd

log in the same line (#18118)

Costa Tsaousis committed Jul 11, 2024 at 21:24 UTC a7a9cc8cd6b65a308498d971ce09cdd994a31d6f
1 file changed +2 -4
src/claim/claim.c
+2 -4
@@ -118,10 +118,8 @@ CLAIM_AGENT_RESPONSE claim_agent(const char *claiming_arguments, bool force, con
118 return CLAIM_AGENT_CLAIM_SCRIPT_RETURNED_INVALID_CODE;
119 }
120
121 - netdata_log_error("Agent failed to be claimed using the command '%s' with the following error message:",
122 - command_exec_buffer);
123 -
124 - netdata_log_error("\"%s\"", claiming_errors[exit_code]);
121 + netdata_log_error("Agent failed to be claimed using the command '%s' with the following error message: %s",
122 + command_exec_buffer, claiming_errors[exit_code]);
123
124 if(msg) *msg = claiming_errors[exit_code];
125