I'm trying to debug why I get null null
when logging the value of $rs $rr
using the following kamailio configuration.
Inside request_route:
if (is_method("REGISTER")) {
t_on_reply("REGISTER_FROM_USER");
# In case of a failure, do a failover:
t_on_failure("FAILURE_TO_REGISTRAR");
}
Inside the failure_route:
failure_route[FAILURE_TO_REGISTRAR] {
xlog("L_INFO","Registrar replied (failure): $rs $rr\n");
This outputs:
Registrar replied (failure): <null> <null>