/**
  * Stores the message for later display.
  * Handles HTML/new line conversions and sets a flag if the message should trigger the popup window.
  * @param string $msg
  * @param integer $type
  * @param string $channel
  * @param boolean $has_html
  * @access private
  */
 protected function _record($msg, $type, $channel, $has_html)
 {
     $this->_log_info->channel = $channel;
     $this->_log_info->type = $type;
     parent::_record($msg, $type, $channel, $has_html);
 }