AdapterInterface.php 2.47 KB
<?php 

namespace Phalcon\Logger {

	/**
	 * Phalcon\Logger\AdapterInterface initializer
	 */
	
	interface AdapterInterface {

		/**
		 * Sets the message formatter
		 *
		 * @param \Phalcon\Logger\FormatterInterface $formatter
		 * @return \Phalcon\Logger\Adapter
		 */
		public function setFormatter($formatter);


		/**
		 * Returns the internal formatter
		 *
		 * @return \Phalcon\Logger\FormatterInterface
		 */
		public function getFormatter();


		/**
		 * Filters the logs sent to the handlers to be greater or equals than a specific level
		 *
		 * @param int $level
		 * @return \Phalcon\Logger\Adapter
		 */
		public function setLogLevel($level);


		/**
		 * Returns the current log level
		 *
		 * @return int
		 */
		public function getLogLevel();


		/**
		 * Sends/Writes messages to the file log
		 *
		 * @param string $message
		 * @param int $type
		 * @return \Phalcon\Logger\Adapter
		 */
		public function log($message, $type=null);


		/**
		 * Starts a transaction
		 *
		 * @return \Phalcon\Logger\Adapter
		 */
		public function begin();


		/**
		 * Commits the internal transaction
		 *
		 * @return \Phalcon\Logger\Adapter
		 */
		public function commit();


		/**
		 * Rollbacks the internal transaction
		 *
		 * @return \Phalcon\Logger\Adapter
		 */
		public function rollback();


		/**
		 * Closes the logger
		 *
		 * @return boolean
		 */
		public function close();


		/**
		 * Sends/Writes a debug message to the log
		 *
		 * @param string $message
		 * @param ing $type
		 * @return \Phalcon\Logger\Adapter
		 */
		public function debug($message);


		/**
		 * Sends/Writes an error message to the log
		 *
		 * @param string $message
		 * @param ing $type
		 * @return \Phalcon\Logger\Adapter
		 */
		public function error($message);


		/**
		 * Sends/Writes an info message to the log
		 *
		 * @param string $message
		 * @param ing $type
		 * @return \Phalcon\Logger\Adapter
		 */
		public function info($message);


		/**
		 * Sends/Writes a notice message to the log
		 *
		 * @param string $message
		 * @param ing $type
		 * @return \Phalcon\Logger\Adapter
		 */
		public function notice($message);


		/**
		 * Sends/Writes a warning message to the log
		 *
		 * @param string $message
		 * @param ing $type
		 * @return \Phalcon\Logger\Adapter
		 */
		public function warning($message);


		/**
		 * Sends/Writes an alert message to the log
		 *
		 * @param string $message
		 * @param ing $type
		 * @return \Phalcon\Logger\Adapter
		 */
		public function alert($message);

	}
}