Made BagOStuff::debug protected
authorAaron Schulz <aschulz@wikimedia.org>
Sun, 25 Jan 2015 07:45:41 +0000 (23:45 -0800)
committerAaron Schulz <aschulz@wikimedia.org>
Mon, 2 Feb 2015 03:57:37 +0000 (03:57 +0000)
Change-Id: Ic05961e49e30d2537b411030b2b891adcc29a29e

includes/objectcache/BagOStuff.php

index ae49564..81c5625 100644 (file)
@@ -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 ),