Horde_Imap_Client_Base_Debug::info PHP Method

info() public method

Write informational message to debug log.
public info ( string $msg )
$msg string Debug message.
    public function info($msg)
    {
        $this->_write($msg . "\n", '>> ');
    }

Usage Example

示例#1
0
文件: Cache.php 项目: evltuma/moodle
 /**
  * Delete a mailbox from the cache.
  *
  * @param string $mbox  The mailbox to delete.
  */
 public function deleteMailbox($mbox)
 {
     $mbox = strval($mbox);
     $this->_backend->deleteMailbox($mbox);
     if ($this->_debug) {
         $this->_debug->info(sprintf('CACHE: Deleted mailbox [%s]', $mbox));
     }
 }
All Usage Examples Of Horde_Imap_Client_Base_Debug::info