Exemplo n.º 1
0
 /**
  * Render the debug logging to the php error log. This can be over-ridden by removing the filter.
  *
  * @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 function renderDebug($title, $data = false, $format = 'log')
 {
     _deprecated_function(__METHOD__, '4.0', 'Tribe__Debug::render');
     Tribe__Debug::render($title, $data, $format);
 }