Logger\Adapter\Stream::logInternal

public logInternal (mixed $message, mixed $type, mixed $time, array $context) Writes the log to the stream itself

Logger\Adapter\Stream::getFormatter

public getFormatter () Returns the internal formatter

Logger\Adapter\Stream::close

public close () Closes the logger

Logger\Adapter\Stream

extends abstract class Phalcon\Logger\Adapter implements Phalcon\Logger\AdapterInterface Source on GitHub Sends logs to a valid PHP stream $logger = new \Phalcon\Logger\Adapter\Stream("php://stderr"); $logger->log("This is a message"); $logger->log(\Phalcon\Logger::ERROR, "This is an error"); $logger->error("This is another error"); Methods public __construct (string $name, [array $options]) Phalcon\Logger\Adapter\Stream constructor public getFormatter () Returns the internal formatte

Logger\Adapter\Firephp::logInternal

public logInternal (mixed $message, mixed $type, mixed $time, array $context) Writes the log to the stream itself

Logger\Adapter\Firephp::getFormatter

public getFormatter () Returns the internal formatter

Logger\Adapter\Firephp::close

public close () Closes the logger

Logger\Adapter\Firephp

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

Logger\Adapter\File::__wakeup

public __wakeup () Opens the internal file handler after unserialization

Logger\Adapter\File::logInternal

public logInternal (mixed $message, mixed $type, mixed $time, array $context) Writes the log to the file itself