예제 #1
0
 /**
  * Returns the singleton logger for the application.
  *
  * @deprecated
  * @return object
  * @see Civi::log()
  */
 public static function &getLog()
 {
     if (!isset(self::$_log)) {
         self::$_log = Log::singleton('display');
     }
     return self::$_log;
 }