You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by na...@apache.org on 2008/05/21 19:38:38 UTC

svn commit: r658778 - /webservices/axis/trunk/c/src/common/AxisConfig.cpp

Author: nadiramra
Date: Wed May 21 10:38:37 2008
New Revision: 658778

URL: http://svn.apache.org/viewvc?rev=658778&view=rev
Log:
AXISCPP-1033 - do not issue message if config file is not found.

Modified:
    webservices/axis/trunk/c/src/common/AxisConfig.cpp

Modified: webservices/axis/trunk/c/src/common/AxisConfig.cpp
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/common/AxisConfig.cpp?rev=658778&r1=658777&r2=658778&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/common/AxisConfig.cpp (original)
+++ webservices/axis/trunk/c/src/common/AxisConfig.cpp Wed May 21 10:38:37 2008
@@ -159,11 +159,7 @@
     // Even if axiscpp.conf does not exist in AXISCPP_DEPLOY default values 
     // will be used. Therefore return AXIS_SUCCESS
     if (AXIS_SUCCESS != fileConfig.fileOpen (sNewConfPath, "r"))
-    {
-        printf ("Warning - The configuration file was not found (%s).\n", sNewConfPath);
-        printf("Using default values\n");
         return AXIS_SUCCESS;
-    }
 
     while (AXIS_SUCCESS == fileConfig.fileGet (carrLine, CONFBUFFSIZE))
     {