Module: kamailio
Branch: master
Commit: 3fec5152c85844ab4fe950d8564c4cc47eef0529
URL:
https://github.com/kamailio/kamailio/commit/3fec5152c85844ab4fe950d8564c4cc…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2016-09-01T12:55:37+02:00
topos: error message about missing uuid when loading dlg made dbg
- this can be the case of local generated requests that are not handled
by topos
- reported by Daniel Tryba
---
Modified: modules/topos/tps_storage.c
---
Diff:
https://github.com/kamailio/kamailio/commit/3fec5152c85844ab4fe950d8564c4cc…
Patch:
https://github.com/kamailio/kamailio/commit/3fec5152c85844ab4fe950d8564c4cc…
---
diff --git a/modules/topos/tps_storage.c b/modules/topos/tps_storage.c
index ecce41c..13c7c77 100644
--- a/modules/topos/tps_storage.c
+++ b/modules/topos/tps_storage.c
@@ -871,7 +871,7 @@ int tps_storage_load_dialog(sip_msg_t *msg, tps_data_t *md, tps_data_t
*sd)
return -1;
if(md->a_uuid.len<=0 && md->b_uuid.len<=0) {
- LM_ERR("no dlg uuid provided\n");
+ LM_DBG("no dlg uuid provided\n");
return -1;
}