Module: kamailio Branch: master Commit: aad248fc39279f84879929772e9306fc01473860 URL: https://github.com/kamailio/kamailio/commit/aad248fc39279f84879929772e9306fc...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2015-09-02T09:18:09+02:00
tmx: err level replaced with info when getting t reply code pv
---
Modified: modules/tmx/t_var.c
---
Diff: https://github.com/kamailio/kamailio/commit/aad248fc39279f84879929772e9306fc... Patch: https://github.com/kamailio/kamailio/commit/aad248fc39279f84879929772e9306fc...
---
diff --git a/modules/tmx/t_var.c b/modules/tmx/t_var.c index 0338233..fa1478c 100644 --- a/modules/tmx/t_var.c +++ b/modules/tmx/t_var.c @@ -518,7 +518,8 @@ int pv_get_tm_reply_code(struct sip_msg *msg, pv_param_t *param, } break; default: - LM_ERR("unsupported route_type %d\n", get_route_type()); + LM_INFO("unsupported route_type %d - code set to 0\n", + get_route_type()); code = 0; } }