Greetings, all, I am puzzled by some spurious output I am getting as a result of upgrading from 1.0.5 to 1.0.6. I am setting up a Server instance, as follows:
Server server = new Server(); : server.component = new Component(); server.component.getServers().add(Protocol.HTTP, port); : server.component.start(); As of 1.0.6 (and 1.0.7), I get the following line printed out during the execution of the start() method: addr null I've done quite a bit of searching in my code, and have inserted println's around the "server.component.start()", and it really appears as if that method is somehow causing this "addr null" line to be printed out. Can anyone help me diagnose why this line is being printed out as of 1.0.6 and what I should do about it? Thanks very much, and happy new year. Philip Johnson

