diff --git a/kamailio/registrar-role.cfg b/kamailio/registrar-role.cfg index 7755080..c67c1a9 100644 --- a/kamailio/registrar-role.cfg +++ b/kamailio/registrar-role.cfg @@ -67,7 +67,7 @@ route[HANDLE_REGISTER] if (!auth_check("$fd", "subscriber", "1")) { route(FAILED_AUTH_COUNT); auth_challenge("$fd", "0"); - xlog("L_INFO", "$ci|log|Issued new auth challenge to failed registration attempt\n"); + xlog("L_INFO", "$ci|end|Issued new auth challenge to failed registration attempt\n"); exit; } else { xlog("L_INFO", "$ci|log|Caching SIP credentials for $Au\n"); @@ -76,7 +76,7 @@ route[HANDLE_REGISTER] } } else { auth_challenge("$fd", "0"); - xlog("L_INFO", "$ci|log|Issued new auth challenge to new registration attempt\n"); + xlog("L_INFO", "$ci|end|Issued new auth challenge to new registration attempt\n"); exit; } @@ -84,6 +84,7 @@ route[HANDLE_REGISTER] consume_credentials(); save("location"); + xlog("L_INFO", "$ci|end|new contact: $ct"); exit; } }