Print subcriber when skipping auth

Change-Id: I6ae6720afc04cc3c92ceff86e5b2a5a29494aeb1
This commit is contained in:
Max 2017-01-16 16:59:48 +01:00 committed by Harald Welte
parent b7f41d554b
commit f5e74b5988
1 changed files with 2 additions and 1 deletions

View File

@ -92,7 +92,8 @@ int auth_get_tuple_for_subscr(struct gsm_auth_tuple *atuple,
rc = db_get_authinfo_for_subscr(&ainfo, subscr);
if (rc < 0) {
LOGP(DMM, LOGL_NOTICE,
"No retrievable Ki for subscriber, skipping auth\n");
"No retrievable Ki for subscriber %s, skipping auth\n",
subscr_name(subscr));
return rc == -ENOENT ? AUTH_NOT_AVAIL : AUTH_ERROR;
}