From: Aaron Schulz Date: Sun, 25 Jan 2015 07:45:41 +0000 (-0800) Subject: Made BagOStuff::debug protected X-Git-Tag: 1.31.0-rc.0~12434^2 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=659ebf050dea8de9f52d78d6986ee31cdd33e784;p=lhc%2Fweb%2Fwiklou.git Made BagOStuff::debug protected Change-Id: Ic05961e49e30d2537b411030b2b891adcc29a29e --- 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 ),