Github user KellenSunderland commented on a diff in the pull request:
https://github.com/apache/incubator-joshua/pull/15#discussion_r64132143
--- Diff: src/main/java/org/apache/joshua/decoder/JoshuaDecoder.java ---
@@ -84,12 +79,13 @@ public static void main(String[] args) throws
IOException {
} else if (joshuaConfiguration.server_type == SERVER_TYPE.HTTP) {
HttpServer server = HttpServer.create(new InetSocketAddress(port),
0);
- Decoder.LOG(1, String.format("** HTTP Server running and listening
on port %d.", port));
+ LOG.info("** HTTP Server running and listening on port %d.", port);
server.createContext("/", new ServerThread(null, decoder,
joshuaConfiguration));
server.setExecutor(null); // creates a default executor
server.start();
} else {
System.err.println("* FATAL: unknown server type");
--- End diff --
I think we can remove the System.err here.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---