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

Unified Diff: filter/dscache/support.go

Issue 1987353002: dscache: Reduce log level of memcache failures. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/gae@master
Patch Set: Created 4 years, 7 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
« filter/dscache/doc.go ('K') | « filter/dscache/ds.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: filter/dscache/support.go
diff --git a/filter/dscache/support.go b/filter/dscache/support.go
index a472a8ba64d1e0b784553c8151afb612bf93a34e..edcd967ef58731a7a3932264c5aff3ef0169531d 100644
--- a/filter/dscache/support.go
+++ b/filter/dscache/support.go
@@ -119,7 +119,7 @@ func (s *supportContext) mutation(keys []*ds.Key, f func() error) error {
err := f()
if err == nil {
if err := errors.Filter(s.mc.DeleteMulti(lockKeys), memcache.ErrCacheMiss); err != nil {
- (log.Fields{log.ErrorKey: err}).Warningf(
+ (log.Fields{log.ErrorKey: err}).Debugf(
s.c, "dscache: mc.DeleteMulti")
}
}
« filter/dscache/doc.go ('K') | « filter/dscache/ds.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698