Subscription REST interface update
  - Error values returned to xApp improved
  - Posibility for xApp to set E2 timeout value added
  - Posibility for xApp to set E2 retry count added
  - Posibility for xApp to set is routing needed for the subscription
  - Info log writings changed to debug log writings

Change-Id: Ib8f5c815c4e05b4784c2435de8c38acd41ba07bd
Signed-off-by: Anssi Mannila <anssi.mannila@nokia.com>
diff --git a/pkg/teststubdummy/stubRmrDummy.go b/pkg/teststubdummy/stubRmrDummy.go
index 2520c54..b11ac6f 100644
--- a/pkg/teststubdummy/stubRmrDummy.go
+++ b/pkg/teststubdummy/stubRmrDummy.go
@@ -54,7 +54,7 @@
 //-----------------------------------------------------------------------------
 
 func (tc *RmrDummyStub) SendReq(t *testing.T, plen int) {
-	tc.Info("SendReq")
+	tc.Debug("SendReq")
 	len := plen
 	if len == 0 {
 		len = 100
@@ -77,7 +77,7 @@
 }
 
 func (tc *RmrDummyStub) SendResp(t *testing.T, plen int) {
-	tc.Info("SendReq")
+	tc.Debug("SendReq")
 	len := plen
 	if len == 0 {
 		len = 100
@@ -99,7 +99,7 @@
 }
 
 func (tc *RmrDummyStub) RecvReq(t *testing.T) bool {
-	tc.Info("RecvReq")
+	tc.Debug("RecvReq")
 
 	msg := tc.WaitMsg(15)
 	if msg != nil {
@@ -115,7 +115,7 @@
 }
 
 func (tc *RmrDummyStub) RecvResp(t *testing.T) bool {
-	tc.Info("RecvResp")
+	tc.Debug("RecvResp")
 
 	msg := tc.WaitMsg(15)
 	if msg != nil {