Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkaguilar2012-02-29 17:55:04 +0000
committerRyan D. Brooks2012-02-29 17:55:04 +0000
commit28111fd59bb80d3a0b6a767ef9443bce8a70368d (patch)
tree589fb8b47dbb64620f41849f38a2b68bc3157335 /plugins/org.eclipse.osee.ote.client.msg
parentaeceaed6dcfa278ea7eb02791043fab51cf9e244 (diff)
downloadorg.eclipse.osee-28111fd59bb80d3a0b6a767ef9443bce8a70368d.tar.gz
org.eclipse.osee-28111fd59bb80d3a0b6a767ef9443bce8a70368d.tar.xz
org.eclipse.osee-28111fd59bb80d3a0b6a767ef9443bce8a70368d.zip
refinement: Improve OTE log information for debugging purposes
Diffstat (limited to 'plugins/org.eclipse.osee.ote.client.msg')
-rw-r--r--plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/internal/MessageSubscriptionService.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/internal/MessageSubscriptionService.java b/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/internal/MessageSubscriptionService.java
index a97a3068588..25e334cdb20 100644
--- a/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/internal/MessageSubscriptionService.java
+++ b/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/internal/MessageSubscriptionService.java
@@ -151,8 +151,11 @@ public class MessageSubscriptionService implements IOteMessageService, IMessageD
}
exportedThis = (IMsgToolServiceClient) event.getConnector().export(this);
} catch (Exception e) {
+ String message = String.format(
+ "failed to create exported Message Tool Client. Connector class is %s",
+ event.getConnector().getClass().getName());
OseeLog.log(MessageSubscriptionService.class, Level.SEVERE,
- "failed to create exported Message Tool Client", e);
+ message, e);
service = null;
exportedThis = null;
return;

Back to the top