diff --git a/res/res_jabber.c b/res/res_jabber.c index c1cee9b7ae..798ff4b5a5 100644 --- a/res/res_jabber.c +++ b/res/res_jabber.c @@ -3565,7 +3565,7 @@ static int aji_handle_pubsub_error(void *data, ikspak *pak) iks *orig_pubsub = iks_find(pak->x, "pubsub"); struct aji_client *client; if (!orig_pubsub) { - ast_log(LOG_ERROR, "Error isn't a PubSub error, why are we here?\n"); + ast_debug(1, "Error isn't a PubSub error, why are we here?\n"); return IKS_FILTER_EAT; } orig_request = iks_child(orig_pubsub); diff --git a/res/res_xmpp.c b/res/res_xmpp.c index bd66e70cc7..34392fd5d6 100644 --- a/res/res_xmpp.c +++ b/res/res_xmpp.c @@ -1508,7 +1508,7 @@ static int xmpp_pubsub_handle_error(void *data, ikspak *pak) } if (!orig_pubsub) { - ast_log(LOG_ERROR, "Error isn't a PubSub error, why are we here?\n"); + ast_debug(1, "Error isn't a PubSub error, why are we here?\n"); return IKS_FILTER_EAT; }