多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# Class Phalcon\\Logger\\Adapter\\Firephp # Class **Phalcon\\Logger\\Adapter\\Firephp** *extends* abstract class [*Phalcon\\Logger\\Adapter*](#) *implements*[*Phalcon\\Logger\\AdapterInterface*](#) Sends logs to FirePHP ``` <pre class="calibre14">``` <?php $logger = new \Phalcon\Logger\Adapter\Firephp(""); $logger->log(\Phalcon\Logger::ERROR, "This is an error"); $logger->error("This is another error"); ``` ``` ### Methods public *PhalconLoggerFormatterInterface***getFormatter** () Returns the internal formatter public **logInternal** (*string* $message, *int* $type, *int* $time, *array* $context) Writes the log to the stream itself public **close** () Closes the logger public **setLogLevel** (*unknown* $level) inherited from Phalcon\\Logger\\Adapter Filters the logs sent to the handlers that are less or equal than a specific level public **getLogLevel** () inherited from Phalcon\\Logger\\Adapter Returns the current log level public **setFormatter** (*unknown* $formatter) inherited from Phalcon\\Logger\\Adapter Sets the message formatter public **begin** () inherited from Phalcon\\Logger\\Adapter Starts a transaction public **commit** () inherited from Phalcon\\Logger\\Adapter Commits the internal transaction public **rollback** () inherited from Phalcon\\Logger\\Adapter Rollbacks the internal transaction public **critical** (*unknown* $message, \[*unknown* $context\]) inherited from Phalcon\\Logger\\Adapter Sends/Writes a critical message to the log public **emergency** (*unknown* $message, \[*unknown* $context\]) inherited from Phalcon\\Logger\\Adapter Sends/Writes an emergency message to the log public **debug** (*unknown* $message, \[*unknown* $context\]) inherited from Phalcon\\Logger\\Adapter Sends/Writes a debug message to the log public **error** (*unknown* $message, \[*unknown* $context\]) inherited from Phalcon\\Logger\\Adapter Sends/Writes an error message to the log public **info** (*unknown* $message, \[*unknown* $context\]) inherited from Phalcon\\Logger\\Adapter Sends/Writes an info message to the log public **notice** (*unknown* $message, \[*unknown* $context\]) inherited from Phalcon\\Logger\\Adapter Sends/Writes a notice message to the log public **warning** (*unknown* $message, \[*unknown* $context\]) inherited from Phalcon\\Logger\\Adapter Sends/Writes a warning message to the log public **alert** (*unknown* $message, \[*unknown* $context\]) inherited from Phalcon\\Logger\\Adapter Sends/Writes an alert message to the log public [*Phalcon\\Logger\\AdapterInterface*](#)**log** (*mixed* $type, \[*mixed* $message\], \[*mixed* $context\]) inherited from Phalcon\\Logger\\Adapter Logs messages to the internal logger. Appends logs to the logger | - [索引](# "总目录") - [下一页](# "Class Phalcon\Logger\Adapter\Stream") | - [上一页](# "Class Phalcon\Logger\Adapter\File") | - [API Indice](#) »