]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
[mod_amqp] Adjusting to Appropriate Log Level for Message
authormahald <mahald@users.noreply.github.com>
Wed, 10 Jan 2024 16:01:26 +0000 (17:01 +0100)
committerGitHub <noreply@github.com>
Wed, 10 Jan 2024 16:01:26 +0000 (19:01 +0300)
* [mod_amqp] Adjusting to Appropriate Log Level for Message

Refined Logging Level for FreeSWITCH's mod_amqp: The logging level for the AMQP module in FreeSWITCH has been updated from 'warning' to 'debug'. This adjustment ensures a more suitable level for the log message and eliminates any potential impact on production environments. Previously, the 'warning' level would lead to unnecessary log entries for each individual message, although there was no actual warning condition. This change improves logging efficiency and appropriateness for mod_amqp's operations within FreeSWITCH.

* [MOD_AMQP] Change LogLevel to DEBUG1 as it is more appropriate for this message

src/mod/event_handlers/mod_amqp/mod_amqp_command.c

index 2789a6e252511f3ab3cdc67ca438f69348215f1c..48cdf55ce4e2756b1a623463d49cce043a8722b3 100644 (file)
@@ -231,7 +231,7 @@ static void mod_amqp_command_response(mod_amqp_command_profile_t *profile, char
        }
 
        /* Construct the api response */
-       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Preparing api command response: [%s]\n", (char *)stream.data);
+       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "Preparing api command response: [%s]\n", (char *)stream.data);
        message = cJSON_CreateObject();
 
        cJSON_AddItemToObject(message, "output", cJSON_CreateString((const char *) stream.data));