Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-05-17 05:59:12 +0000
committerslewis2007-05-17 05:59:12 +0000
commit6d31c3a3192e26cd8d02ecf9e8da4607940664f4 (patch)
tree3f80c7b05d0a7393a1d918163ba1ca63814f8471
parent2bc0bd8235b62744c85c93ce5c7747e9fc6f1044 (diff)
downloadorg.eclipse.ecf-6d31c3a3192e26cd8d02ecf9e8da4607940664f4.tar.gz
org.eclipse.ecf-6d31c3a3192e26cd8d02ecf9e8da4607940664f4.tar.xz
org.eclipse.ecf-6d31c3a3192e26cd8d02ecf9e8da4607940664f4.zip
Renamed logError method in BaseSharedObject to log
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/RegistrySharedObject.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/RegistrySharedObject.java b/providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/RegistrySharedObject.java
index 8f26203a3..5882b2b06 100644
--- a/providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/RegistrySharedObject.java
+++ b/providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/RegistrySharedObject.java
@@ -346,10 +346,10 @@ public class RegistrySharedObject extends BaseSharedObject implements
+ call.getTimeout() + " ms");
}
} catch (final IOException e) {
- logError(CALL_REQUEST_ERROR_CODE, CALL_REQUEST_ERROR_MESSAGE, e);
+ log(CALL_REQUEST_ERROR_CODE, CALL_REQUEST_ERROR_MESSAGE, e);
throw new ECFException("Exception sending request", e);
} catch (final InterruptedException e) {
- logError(CALL_REQUEST_TIMEOUT_ERROR_CODE,
+ log(CALL_REQUEST_TIMEOUT_ERROR_CODE,
CALL_REQUEST_TIMEOUT_ERROR_MESSAGE, e);
throw new ECFException("Wait for response interrupted", e);
}
@@ -541,7 +541,7 @@ public class RegistrySharedObject extends BaseSharedObject implements
sendSharedObjectMsgTo(null, SharedObjectMsg.createMsg(null,
ADD_REGISTRATION, getLocalContainerID(), reg));
} catch (final IOException e) {
- logError(ADD_REGISTRATION_ERROR_CODE,
+ log(ADD_REGISTRATION_ERROR_CODE,
ADD_REGISTRATION_ERROR_MESSAGE, e);
}
Trace.exiting(Activator.PLUGIN_ID,
@@ -615,7 +615,7 @@ public class RegistrySharedObject extends BaseSharedObject implements
response = new Response(request.getRequestId(), result);
} catch (final Exception e) {
response = new Response(request.getRequestId(), e);
- logError(SERVICE_INVOKE_ERROR_CODE, SERVICE_INVOKE_ERROR_MESSAGE, e);
+ log(SERVICE_INVOKE_ERROR_CODE, SERVICE_INVOKE_ERROR_MESSAGE, e);
}
// Now send response back to responseTarget (original requestor)
sendCallResponse(responseTarget, response);
@@ -640,7 +640,7 @@ public class RegistrySharedObject extends BaseSharedObject implements
sendSharedObjectMsgTo(remoteRegistration.getContainerID(),
SharedObjectMsg.createMsg(CALL_REQUEST, request));
} catch (final IOException e) {
- logError(CALL_REQUEST_ERROR_CODE, CALL_REQUEST_ERROR_MESSAGE, e);
+ log(CALL_REQUEST_ERROR_CODE, CALL_REQUEST_ERROR_MESSAGE, e);
removeRequest(request);
fireCallCompleteEvent(listener, request.getRequestId(), null, true,
e);
@@ -659,7 +659,7 @@ public class RegistrySharedObject extends BaseSharedObject implements
sendSharedObjectMsgTo(responseTarget, SharedObjectMsg.createMsg(
CALL_RESPONSE, response));
} catch (final IOException e) {
- logError(CALL_RESPONSE_ERROR_CODE, CALL_RESPONSE_ERROR_MESSAGE, e);
+ log(CALL_RESPONSE_ERROR_CODE, CALL_RESPONSE_ERROR_MESSAGE, e);
}
Trace.exiting(Activator.PLUGIN_ID,
IRemoteServiceProviderDebugOptions.METHODS_EXITING, this
@@ -672,7 +672,7 @@ public class RegistrySharedObject extends BaseSharedObject implements
.getClass(), CALL_RESPONSE, new Object[] { response });
final Request request = findRequestForId(response.getRequestId());
if (request == null) {
- logError(REQUEST_NOT_FOUND_ERROR_CODE,
+ log(REQUEST_NOT_FOUND_ERROR_CODE,
REQUEST_NOT_FOUND_ERROR_MESSAGE, new NullPointerException());
return;
} else {
@@ -707,7 +707,7 @@ public class RegistrySharedObject extends BaseSharedObject implements
sendSharedObjectMsgTo(remoteRegistration.getContainerID(),
SharedObjectMsg.createMsg(FIRE_REQUEST, request));
} catch (final IOException e) {
- logError(FIRE_REQUEST_ERROR_CODE, FIRE_REQUEST_ERROR_MESSAGE, e);
+ log(FIRE_REQUEST_ERROR_CODE, FIRE_REQUEST_ERROR_MESSAGE, e);
throw new ECFException("IOException sending remote request", e);
}
Trace.exiting(Activator.PLUGIN_ID,
@@ -726,7 +726,7 @@ public class RegistrySharedObject extends BaseSharedObject implements
try {
localRegistration.callService(call);
} catch (final Exception e) {
- logError(HANDLE_REQUEST_ERROR_CODE, HANDLE_REQUEST_ERROR_MESSAGE, e);
+ log(HANDLE_REQUEST_ERROR_CODE, HANDLE_REQUEST_ERROR_MESSAGE, e);
}
Trace.exiting(Activator.PLUGIN_ID,
IRemoteServiceProviderDebugOptions.METHODS_EXITING, this
@@ -747,7 +747,7 @@ public class RegistrySharedObject extends BaseSharedObject implements
this.sendSharedObjectMsgTo(null, SharedObjectMsg.createMsg(
UNREGISTER, new Object[] { containerID, serviceId }));
} catch (final IOException e) {
- logError(UNREGISTER_ERROR_CODE, UNREGISTER_ERROR_MESSAGE, e);
+ log(UNREGISTER_ERROR_CODE, UNREGISTER_ERROR_MESSAGE, e);
}
}
Trace.exiting(Activator.PLUGIN_ID,
@@ -891,7 +891,7 @@ public class RegistrySharedObject extends BaseSharedObject implements
try {
msg.invoke(this);
} catch (final Exception e) {
- logError(MSG_INVOKE_ERROR_CODE, MSG_INVOKE_ERROR_MESSAGE, e);
+ log(MSG_INVOKE_ERROR_CODE, MSG_INVOKE_ERROR_MESSAGE, e);
}
return false;
}

Back to the top