Commit 99d547c9 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Connect and disconnect messages should go to debug.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@310 b35dd754-fafc-0310-a699-88a17e54d16e
parent bd32c62a
......@@ -129,7 +129,7 @@ public class SSLSocketAcceptThread extends Thread {
while (notTerminated) {
try {
Socket sock = serverSocket.accept();
Log.info("SSL Connect " + sock.toString());
Log.debug("SSL Connect " + sock.toString());
connManager.addSocket(sock, true);
}
catch (SSLException se) {
......
......@@ -113,7 +113,7 @@ public class SocketAcceptThread extends Thread {
try {
Socket sock = serverSocket.accept();
if (sock != null) {
Log.info("Connect " + sock.toString());
Log.debug("Connect " + sock.toString());
connManager.addSocket(sock, false);
}
}
......
......@@ -134,7 +134,7 @@ public class SocketReadThread extends Thread {
}
finally {
if (session != null) {
//Log.info("Logging off " + session.getAddress() + " on " + connection);
Log.debug("Logging off " + session.getAddress() + " on " + connection);
try {
// Allow everything to settle down after a disconnect
// e.g. presence updates to avoid sending double
......
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