core: Remove Logger related methods from the Runtime and use the RuntimeX variants.

Also, changes to make it possible to port WSPR to the new model.

Change-Id: I47be6882f1e17fd2d4cab4f444b5b69a51d45056
MultiPart: 1/2
diff --git a/runtimes/google/rt/rt_test.go b/runtimes/google/rt/rt_test.go
index 410364a..e238630 100644
--- a/runtimes/google/rt/rt_test.go
+++ b/runtimes/google/rt/rt_test.go
@@ -10,6 +10,7 @@
 	"testing"
 	"time"
 
+	"v.io/core/veyron2"
 	"v.io/core/veyron2/options"
 	"v.io/core/veyron2/rt"
 	"v.io/core/veyron2/security"
@@ -38,7 +39,7 @@
 	if err != nil {
 		t.Fatalf("error: %s", err)
 	}
-	l := r.Logger()
+	l := veyron2.GetLogger(r.NewContext())
 	args := fmt.Sprintf("%s", l)
 	expected := regexp.MustCompile("name=veyron logdirs=\\[/tmp\\] logtostderr=true|false alsologtostderr=false|true max_stack_buf_size=4292608 v=[0-9] stderrthreshold=2 vmodule= log_backtrace_at=:0")
 	if !expected.MatchString(args) {
@@ -66,8 +67,9 @@
 	}
 	defer r.Cleanup()
 
-	vlog.Infof("%s\n", r.Logger())
-	fmt.Fprintf(stdout, "%s\n", r.Logger())
+	logger := veyron2.GetLogger(r.NewContext())
+	vlog.Infof("%s\n", logger)
+	fmt.Fprintf(stdout, "%s\n", logger)
 	modules.WaitForEOF(stdin)
 	fmt.Fprintf(stdout, "done\n")
 	return nil