extends abstract class Phalcon\Logger\Adapter
implements Phalcon\Logger\AdapterInterface
Source on GitHub
Sends logs to FirePHP
use Phalcon\Logger\Adapter\Firephp;
use Phalcon\Logger;
$logger = new Firephp();
$logger->log(Logger::ERROR, 'This is an error');
$logger->error('This is another error');
Methods
public getFormatter ()
Returns the internal formatter
public logInternal (mixed $message, mixed $type, mixed $time, array $context)
Writes the log to the stream itself
public close