From 3c11f5132e980e6a4da0b50bbce1b1357c3b462a Mon Sep 17 00:00:00 2001 From: karl anderson Date: Mon, 9 Sep 2013 09:56:45 -0700 Subject: [PATCH] log line tweak --- kamailio/registrar-role.cfg | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } }