Author: nextgens
Date: 2007-11-10 22:43:45 +0000 (Sat, 10 Nov 2007)
New Revision: 15750
Modified:
trunk/freenet/src/freenet/node/fcp/FCPServer.java
Log:
Better logging
Modified: trunk/freenet/src/freenet/node/fcp/FCPServer.java
===================================================================
--- trunk/freenet/src/freenet/node/fcp/FCPServer.java 2007-11-10 22:43:21 UTC
(rev 15749)
+++ trunk/freenet/src/freenet/node/fcp/FCPServer.java 2007-11-10 22:43:45 UTC
(rev 15750)
@@ -119,8 +119,7 @@
try {
tempNetworkInterface = NetworkInterface.create(port,
bindTo, allowedHosts, node.executor, false);
} catch (SocketException be) {
- be.printStackTrace();
- Logger.error(this, "Couldn't bind to FCP Port "+bindTo+
':' +port+". FCP Server not started.");
+ Logger.error(this, "Couldn't bind to FCP Port "+bindTo+
':' +port+". FCP Server not started.", be);
System.out.println("Couldn't bind to FCP Port "+bindTo+
':' +port+". FCP Server not started.");
}