Exemplo n.º 1
0
 /**
  * Tribe debug function. usage: Tribe__Debug::debug( 'Message', $data, 'log' );
  *
  * @param string      $title  Message to display in log
  * @param string|bool $data   Optional data to display
  * @param string      $format Optional format (log|warning|error|notice)
  *
  */
 public static function debug($title, $data = false, $format = 'log')
 {
     _deprecated_function(__METHOD__, '4.0', 'Tribe__Debug::debug');
     Tribe__Debug::debug($title, $data, $format);
 }