Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2279)

Unified Diff: appengine/gaemiddleware/context.go

Issue 1492273003: Remove gaelogger from luci-go (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: rm memlogger Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/gaelogger/logger.go ('k') | appengine/gaetesting/middleware.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/gaemiddleware/context.go
diff --git a/appengine/gaemiddleware/context.go b/appengine/gaemiddleware/context.go
index 64269efee474dd63b8968d5b1d97c3a3e0387bf5..94d2d73e826bfb77510513691f8451f4112a9217 100644
--- a/appengine/gaemiddleware/context.go
+++ b/appengine/gaemiddleware/context.go
@@ -12,7 +12,6 @@ import (
"github.com/luci/luci-go/appengine/gaeauth/client"
"github.com/luci/luci-go/appengine/gaeauth/server"
"github.com/luci/luci-go/appengine/gaeauth/server/gaesigner"
- "github.com/luci/luci-go/appengine/gaelogger"
"github.com/luci/luci-go/appengine/gaesecrets"
"github.com/luci/luci-go/appengine/gaesettings"
"github.com/luci/luci-go/server/auth"
@@ -36,7 +35,6 @@ var (
// WithProd installs the set of standard production AppEngine services:
// * github.com/luci/gae/impl/prod (production appengine services)
-// * github.com/luci/luci-go/appengine/gaelogger (appengine logging service)
// * github.com/luci/luci-go/appengine/gaeauth/client (appengine urlfetch transport)
// * github.com/luci/luci-go/server/proccache (in process memory cache)
// * github.com/luci/luci-go/server/settings (global app settings)
@@ -45,7 +43,6 @@ var (
// * github.com/luci/luci-go/appengine/gaeauth/server/auth (user groups database)
func WithProd(c context.Context, req *http.Request) context.Context {
c = prod.Use(c, req)
- c = gaelogger.Use(c)
c = client.UseAnonymousTransport(c)
c = proccache.Use(c, globalProcessCache)
c = settings.Use(c, globalSettings)
« no previous file with comments | « appengine/gaelogger/logger.go ('k') | appengine/gaetesting/middleware.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698