Changeset 73901f6
- Timestamp:
- Sep 6, 2011 1:23:39 PM (10 years ago)
- Branches:
- master
- Children:
- d3950bd
- Parents:
- 70d9415
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnel.java
r70d9415 r73901f6 690 690 } catch (IllegalArgumentException iae) { 691 691 String msg = "Invalid I2PTunnel configuration to create an HTTP Proxy connecting to the router at " + host + ':'+ port + 692 " and listening on " + listenHost + ':' + port ;692 " and listening on " + listenHost + ':' + portNum; 693 693 _log.error(getPrefix() + msg, iae); 694 694 l.log(msg); … … 766 766 } catch (IllegalArgumentException iae) { 767 767 String msg = "Invalid I2PTunnel configuration to create an HTTP Proxy connecting to the router at " + host + ':'+ port + 768 " and listening on " + listenHost + ':' + port;768 " and listening on " + listenHost + ':' + clientPort; 769 769 _log.error(getPrefix() + msg, iae); 770 770 l.log(msg); … … 834 834 } catch (IllegalArgumentException iae) { 835 835 String msg = "Invalid I2PTunnel configuration to create a CONNECT client connecting to the router at " + host + ':'+ port + 836 " and listening on " + listenHost + ':' + port;836 " and listening on " + listenHost + ':' + _port; 837 837 _log.error(getPrefix() + msg, iae); 838 838 l.log(msg); … … 900 900 } catch (IllegalArgumentException iae) { 901 901 String msg = "Invalid I2PTunnel configuration to create an IRC client connecting to the router at " + host + ':'+ port + 902 " and listening on " + listenHost + ':' + port;902 " and listening on " + listenHost + ':' + _port; 903 903 _log.error(getPrefix() + msg, iae); 904 904 l.log(msg); … … 954 954 } catch (IllegalArgumentException iae) { 955 955 String msg = "Invalid I2PTunnel configuration to create a SOCKS Proxy connecting to the router at " + host + ':'+ port + 956 " and listening on " + listenHost + ':' + port;956 " and listening on " + listenHost + ':' + _port; 957 957 _log.error(getPrefix() + msg, iae); 958 958 l.log(msg); … … 1001 1001 } catch (IllegalArgumentException iae) { 1002 1002 String msg = "Invalid I2PTunnel configuration to create a SOCKS IRC Proxy connecting to the router at " + host + ':'+ port + 1003 " and listening on " + listenHost + ':' + port;1003 " and listening on " + listenHost + ':' + _port; 1004 1004 _log.error(getPrefix() + msg, iae); 1005 1005 l.log(msg); … … 1051 1051 } catch (IllegalArgumentException iae) { 1052 1052 String msg = "Invalid I2PTunnel configuration to create a Streamr Client connecting to the router at " + host + ':'+ port + 1053 " and sending to " + _host + ':' + port;1053 " and sending to " + _host + ':' + _port; 1054 1054 _log.error(getPrefix() + msg, iae); 1055 1055 l.log(msg);
Note: See TracChangeset
for help on using the changeset viewer.