summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--branches/sca-java-1.x/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java b/branches/sca-java-1.x/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java
index 4cdcc1fd0b..a81a0d79ac 100644
--- a/branches/sca-java-1.x/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java
+++ b/branches/sca-java-1.x/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java
@@ -27,6 +27,7 @@ import org.osoa.sca.annotations.Service;
public class HelloWorldImpl implements HelloWorldService {
public String getGreetings(String name) {
+ System.out.println("Got greeting " + name + " at server");
return "Hello " + name;
}