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

Unified Diff: impl/prod/logger.go

Issue 1621993003: Fix logger after filter api change in luci-go. (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: Created 4 years, 11 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: impl/prod/logger.go
diff --git a/impl/prod/logger.go b/impl/prod/logger.go
index bc8be25b66e4af366a0d0d80035a73a19385b875..e28e955e2a119d88d45726408da20d35b50fe38f 100644
--- a/impl/prod/logger.go
+++ b/impl/prod/logger.go
@@ -61,7 +61,7 @@ func (gl *loggerImpl) LogCall(l logging.Level, calldepth int, format string, arg
fields := logging.GetFields(gl.ic)
if len(fields) > 0 {
- logf(gl.aeCtx, "%s :: %s", fmt.Sprintf(format, args...), fields.FieldString(true))
+ logf(gl.aeCtx, "%s :: %s", fmt.Sprintf(format, args...), fields.String())
} else {
logf(gl.aeCtx, format, args...)
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698