Lines Matching defs:info
715 * print debug info
719 * @param string $info
724 protected function debug($info, $var = null)
728 $this->debugText($info, $var);
730 $this->debugHtml($info, $var);
735 * print debug info as HTML
737 * @param string $info
740 protected function debugHtml($info, $var = null)
742 echo '<b>' . $info . '</b> ' . (microtime(true) - $this->start) . 's<br />';
753 * prints debug info as plain text
755 * @param string $info
758 protected function debugText($info, $var = null)
760 echo '*' . $info . '* ' . (microtime(true) - $this->start) . "s\n";