You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@excalibur.apache.org by le...@apache.org on 2005/01/17 05:45:39 UTC

svn commit: r125397 - /excalibur/trunk/containerkit/instrument/mgr-http/src/java/org/apache/excalibur/instrument/manager/http/server/AbstractSocketServer.java

Author: leif
Date: Sun Jan 16 20:45:37 2005
New Revision: 125397

URL: http://svn.apache.org/viewcvs?view=rev&rev=125397
Log:
Fix the error message text shown when the server port could not be bound.  The port variable name was being shown rather than its value.
Modified:
   excalibur/trunk/containerkit/instrument/mgr-http/src/java/org/apache/excalibur/instrument/manager/http/server/AbstractSocketServer.java

Modified: excalibur/trunk/containerkit/instrument/mgr-http/src/java/org/apache/excalibur/instrument/manager/http/server/AbstractSocketServer.java
Url: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/instrument/mgr-http/src/java/org/apache/excalibur/instrument/manager/http/server/AbstractSocketServer.java?view=diff&rev=125397&p1=excalibur/trunk/containerkit/instrument/mgr-http/src/java/org/apache/excalibur/instrument/manager/http/server/AbstractSocketServer.java&r1=125396&p2=excalibur/trunk/containerkit/instrument/mgr-http/src/java/org/apache/excalibur/instrument/manager/http/server/AbstractSocketServer.java&r2=125397
==============================================================================
--- excalibur/trunk/containerkit/instrument/mgr-http/src/java/org/apache/excalibur/instrument/manager/http/server/AbstractSocketServer.java	(original)
+++ excalibur/trunk/containerkit/instrument/mgr-http/src/java/org/apache/excalibur/instrument/manager/http/server/AbstractSocketServer.java	Sun Jan 16 20:45:37 2005
@@ -123,7 +123,7 @@
         }
         catch ( IOException e )
         {
-            String msg = "Unable to bind to port m_port: " + e.getMessage();
+            String msg = "Unable to bind to port " + m_port + ": " + e.getMessage();
             throw new BindException( msg );
         }
         

---------------------------------------------------------------------
To unsubscribe, e-mail: scm-unsubscribe@excalibur.apache.org
For additional commands, e-mail: scm-help@excalibur.apache.org