Index: examples/go/echo_server.go |
diff --git a/examples/go/echo_server.go b/examples/go/echo_server.go |
index 6d2732b89a126a5b4d8dfba52d1c2913c0aad8c0..6791a8331a777b51ddf7e6af52dba8b19b01677d 100644 |
--- a/examples/go/echo_server.go |
+++ b/examples/go/echo_server.go |
@@ -22,7 +22,7 @@ import "C" |
type EchoImpl struct{} |
func (echo *EchoImpl) EchoString(inValue *string) (outValue *string, err error) { |
- log.Println(*inValue) |
+ log.Printf("server: %s\n", *inValue) |
return inValue, nil |
} |