From: Aaron Schulz Date: Tue, 10 Nov 2015 06:41:04 +0000 (-0800) Subject: Mention main WAN and stash instances in cache debug statement X-Git-Tag: 1.31.0-rc.0~9036 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/%24wgLogo?a=commitdiff_plain;h=5cb16e7711354fb3a39913d5a38d55367751d81b;p=lhc%2Fweb%2Fwiklou.git Mention main WAN and stash instances in cache debug statement Change-Id: Ic98ce5aecc093400f23d3595be75df3bf54268bf --- diff --git a/includes/Setup.php b/includes/Setup.php index 355b03a71e..ce091f176b 100644 --- a/includes/Setup.php +++ b/includes/Setup.php @@ -627,7 +627,10 @@ $wgMemc = wfGetMainCache(); $messageMemc = wfGetMessageCacheStorage(); $parserMemc = wfGetParserCacheStorage(); -wfDebugLog( 'caches', 'main: ' . get_class( $wgMemc ) . +wfDebugLog( 'caches', + 'cluster: ' . get_class( $wgMemc ) . + ', WAN: ' . $wgMainWANCache . + ', stash: ' . $wgMainStash . ', message: ' . get_class( $messageMemc ) . ', parser: ' . get_class( $parserMemc ) );