Lower stash logging to debug()

Bug: T146697
Change-Id: I480b491d788e2ce970238c103b2ff05167312513
This commit is contained in:
Aaron Schulz 2016-09-26 15:20:58 -07:00
parent 23cf151ef9
commit 4daa66c68c

View file

@ -933,7 +933,7 @@ class AbuseFilter {
// Save the filter stash result and do nothing further
$cacheData = [ 'matches' => $filter_matched, 'tags' => self::$tagsToSet ];
$cache->set( $stashKey, $cacheData, $cache::TTL_MINUTE );
$logger->info( __METHOD__ . ": cache store for '$title' (key $stashKey)." );
$logger->debug( __METHOD__ . ": cache store for '$title' (key $stashKey)." );
$statsd->increment( 'abusefilter.check-stash.store' );
return Status::newGood();