Author: nextgens
Date: 2006-08-26 18:31:35 +0000 (Sat, 26 Aug 2006)
New Revision: 10270
Modified:
trunk/freenet/src/freenet/node/NodeStarter.java
Log:
print a new message on stdout when the node initialization has really completed.
Modified: trunk/freenet/src/freenet/node/NodeStarter.java
===================================================================
--- trunk/freenet/src/freenet/node/NodeStarter.java 2006-08-26 16:26:56 UTC
(rev 10269)
+++ trunk/freenet/src/freenet/node/NodeStarter.java 2006-08-26 18:31:35 UTC
(rev 10270)
@@ -149,6 +149,7 @@
try {
node = new Node(cfg, random, logConfigHandler,this);
node.start(false);
+ System.out.println("Node initialization completed.");
} catch (NodeInitException e) {
System.err.println("Failed to load node: "+e.getMessage());
e.printStackTrace();