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

Unified Diff: impl/prod/context.go

Issue 1498963003: Move gaelogging from luci/luci-go to luci/gae (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: rebase 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 | « impl/memory/context.go ('k') | impl/prod/everything_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: impl/prod/context.go
diff --git a/impl/prod/context.go b/impl/prod/context.go
index 80d24e224f5b0dbdb3f16c5f51c80da7a924f94e..8b62dbe08f67d3aa4c65453526fde20cf7051d8a 100644
--- a/impl/prod/context.go
+++ b/impl/prod/context.go
@@ -46,6 +46,8 @@ func AEContextNoTxn(c context.Context) context.Context {
// - github.com/luci/gae/service/memcache
// - github.com/luci/gae/service/info
// - github.com/luci/gae/service/urlfetch
+// - github.com/luci/gae/service/user
+// - github.com/luci-go/common/logging
//
// These can be retrieved with the <service>.Get functions.
//
@@ -54,5 +56,5 @@ func Use(c context.Context, r *http.Request) context.Context {
aeCtx := appengine.NewContext(r)
c = context.WithValue(c, prodContextKey, aeCtx)
c = context.WithValue(c, prodContextNoTxnKey, aeCtx)
- return useUser(useURLFetch(useRDS(useMC(useTQ(useGI(c))))))
+ return useUser(useURLFetch(useRDS(useMC(useTQ(useGI(useLogging(c)))))))
}
« no previous file with comments | « impl/memory/context.go ('k') | impl/prod/everything_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698