From 659ebf050dea8de9f52d78d6986ee31cdd33e784 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 24 Jan 2015 23:45:41 -0800 Subject: [PATCH] Made BagOStuff::debug protected Change-Id: Ic05961e49e30d2537b411030b2b891adcc29a29e --- includes/objectcache/BagOStuff.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/objectcache/BagOStuff.php b/includes/objectcache/BagOStuff.php index ae49564422..81c5625432 100644 --- a/includes/objectcache/BagOStuff.php +++ b/includes/objectcache/BagOStuff.php @@ -381,7 +381,7 @@ abstract class BagOStuff implements LoggerAwareInterface { /** * @param string $text */ - public function debug( $text ) { + protected function debug( $text ) { if ( $this->debugMode ) { $this->logger->debug( "{class} debug: $text", array( 'class' => get_class( $this ), -- 2.20.1