Commit af71858b authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Minor tweak to silence an exception.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk/src/plugins/gateway@7272 b35dd754-fafc-0310-a699-88a17e54d16e
parent 438f14b7
......@@ -148,6 +148,7 @@ public class SimpleSession extends TransportSession {
udpSipProvider = sipStack.createSipProvider(udp);
} catch (Exception ex) {
Log.debug(ex);
return;
}
try {
......@@ -156,12 +157,14 @@ public class SimpleSession extends TransportSession {
udpSipProvider.addSipListener(myListener);
} catch (TooManyListenersException ex) {
Log.debug(ex);
return;
}
try {
sipStack.start();
} catch (SipException ex) {
Log.debug(ex);
return;
}
seqNum = 1L;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment