From 19a961858950f3c7874aaf708b41ddcefe71146d Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 29 Mar 2014 17:42:08 +0100 Subject: [PATCH] Send the localisation store debug message to the "caches" log group Rationale is the same as for Ifb6dc2666f (96b04ce): ability to separate it form the main log group, as it always has a predicitible value. Change-Id: I0ac5baf5ab8fbe4d2025ccf6439b883dc82e9d5b --- includes/cache/LocalisationCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/cache/LocalisationCache.php b/includes/cache/LocalisationCache.php index c56111f85e..3c833ac90e 100644 --- a/includes/cache/LocalisationCache.php +++ b/includes/cache/LocalisationCache.php @@ -212,7 +212,7 @@ class LocalisationCache { } } - wfDebug( get_class( $this ) . ": using store $storeClass\n" ); + wfDebugLog( 'caches', get_class( $this ) . ": using store $storeClass" ); if ( !empty( $conf['storeDirectory'] ) ) { $storeConf['directory'] = $conf['storeDirectory']; } -- 2.20.1