CC: log more details about unhandled message/state

Change-Id: I8e0febd04f7338aed7222dcfcd9bfddc7b8fda59
This commit is contained in:
Max 2018-12-17 16:00:22 +01:00
parent 020ec7ac0c
commit 964da93c69
1 changed files with 1 additions and 1 deletions

View File

@ -2047,7 +2047,7 @@ int mncc_tx_to_cc(struct gsm_network *net, int msg_type, void *arg)
&& ((1 << trans->cc.state) & downstatelist[i].states))
break;
if (i == DOWNSLLEN) {
DEBUGP(DCC, "Message unhandled at this state.\n");
DEBUGP(DCC, "Message '%s' unhandled at state '%s'\n", get_mncc_name(msg_type), gsm48_cc_state_name(trans->cc.state));
return 0;
}