Prints some extra info when dropping stray INVITEs

fix-message-formatting
Emil Ivov 12 years ago
parent 63bb9bf64a
commit 1a570fd446

@ -320,7 +320,8 @@ public boolean processRequest(RequestEvent requestEvent)
else
{
logger.error("reINVITEs while the dialog is not "
+ "confirmed are not currently supported.");
+ "confirmed are not currently supported. "
+ "DialogState is: " + dialogState);
}
processed = true;
@ -1185,6 +1186,8 @@ private void processBye(ServerTransaction serverTransaction,
*/
private void processStrayInvite(ServerTransaction serverTransaction)
{
logger.info("got an INVITE for a dead dialog. Rejecting");
Request inviteRequest = serverTransaction.getRequest();
// Send 481 Call/Transaction Does Not exist

Loading…
Cancel
Save