Module: kamailio Branch: master Commit: ac599ebd9f1540c9599ed580990fd0d78c63cbe8 URL: https://github.com/kamailio/kamailio/commit/ac599ebd9f1540c9599ed580990fd0d78c63cbe8
Author: Andrew Compton <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> Date: 2026-01-06T12:45:17+01:00 pua_usrloc: log as debug when not configured to publish --- Modified: src/modules/pua_usrloc/ul_publish.c --- Diff: https://github.com/kamailio/kamailio/commit/ac599ebd9f1540c9599ed580990fd0d78c63cbe8.diff Patch: https://github.com/kamailio/kamailio/commit/ac599ebd9f1540c9599ed580990fd0d78c63cbe8.patch --- diff --git a/src/modules/pua_usrloc/ul_publish.c b/src/modules/pua_usrloc/ul_publish.c index 707367bb72a..0dc32224847 100644 --- a/src/modules/pua_usrloc/ul_publish.c +++ b/src/modules/pua_usrloc/ul_publish.c @@ -211,11 +211,11 @@ void ul_publish(ucontact_t *c, int type, void *param) content_type.len = 20; if(pua_ul_publish == 0 && pua_ul_bmask == 0) { - LM_INFO("should not send ul publish\n"); + LM_DBG("should not send ul publish\n"); return; } if(pua_ul_bmask != 0 && (c->cflags & pua_ul_bmask) == 0) { - LM_INFO("not marked for publish\n"); + LM_DBG("not marked for publish\n"); return; } _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
