I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 09ed1b1f authored by jrandom's avatar jrandom Committed by zzz
Browse files

logging

parent fcb109f4
No related branches found
No related tags found
No related merge requests found
...@@ -41,11 +41,13 @@ public class AdminManager implements Service { ...@@ -41,11 +41,13 @@ public class AdminManager implements Service {
try { try {
int val = Integer.parseInt(str); int val = Integer.parseInt(str);
port = val; port = val;
_log.info("Starting up admin listener on port " + port);
} catch (NumberFormatException nfe) { } catch (NumberFormatException nfe) {
_log.warn("Invalid admin port specified [" + str + "]", nfe); _log.warn("Invalid admin port specified [" + str + "], using the default " + DEFAULT_ADMIN_PORT, nfe);
} }
} else {
_log.warn("Router admin port not specified, using the default " + DEFAULT_ADMIN_PORT);
} }
_log.info("Starting up admin listener on port " + port);
startup(port); startup(port);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment