You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ro...@apache.org on 2006/02/21 11:01:48 UTC

svn commit: r379408 - /incubator/tuscany/cpp/sca/runtime/core/src/tuscany/sca/core/ComponentServiceWrapper.cpp

Author: robbinspg
Date: Tue Feb 21 02:01:46 2006
New Revision: 379408

URL: http://svn.apache.org/viewcvs?rev=379408&view=rev
Log:
Correct method names in log entries

Modified:
    incubator/tuscany/cpp/sca/runtime/core/src/tuscany/sca/core/ComponentServiceWrapper.cpp

Modified: incubator/tuscany/cpp/sca/runtime/core/src/tuscany/sca/core/ComponentServiceWrapper.cpp
URL: http://svn.apache.org/viewcvs/incubator/tuscany/cpp/sca/runtime/core/src/tuscany/sca/core/ComponentServiceWrapper.cpp?rev=379408&r1=379407&r2=379408&view=diff
==============================================================================
--- incubator/tuscany/cpp/sca/runtime/core/src/tuscany/sca/core/ComponentServiceWrapper.cpp (original)
+++ incubator/tuscany/cpp/sca/runtime/core/src/tuscany/sca/core/ComponentServiceWrapper.cpp Tue Feb 21 02:01:46 2006
@@ -167,7 +167,7 @@
                 WRAPPERFACTORY wrapperFactory = (WRAPPERFACTORY)wrapperLib->getSymbol(wrapperFactoryName);
                 if (!wrapperFactory)
                 {
-                    LOGERROR_2(1, "ComponentContextImpl::getServiceWrapper: Unable to locate %s in library %s",
+                    LOGERROR_2(1, "ComponentServiceWrapper::createServiceWrapper: Unable to locate %s in library %s",
                         wrapperFactoryName.c_str(), fullDllName.c_str());
                     msg = "Unable to locate " + wrapperFactoryName + " in library " + fullDllName;
                     throw ServiceNotFoundException(msg.c_str());
@@ -179,7 +179,7 @@
                 serviceWrapper = wrapperFactory(service);
                 if (!serviceWrapper)
                 {
-                    LOGERROR_2(1, "ComponentContextImpl::getServiceWrapper: Factory method %s in library %s returned null",
+                    LOGERROR_2(1, "ComponentServiceWrapper::createServiceWrapper: Factory method %s in library %s returned null",
                         wrapperFactoryName.c_str(), fullDllName.c_str());
                     msg = "Factory method " + wrapperFactoryName + " in library " + fullDllName + " returned null";
                     throw ServiceNotFoundException(msg.c_str());