2011-01-28 06:22:54 +00:00
|
|
|
<?php
|
2011-07-31 23:14:36 +00:00
|
|
|
/**
|
|
|
|
* CakeLogInterface
|
|
|
|
*
|
2017-06-10 21:33:55 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
2017-06-10 22:10:52 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2011-07-31 23:14:36 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2011-07-31 23:14:36 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2017-06-10 22:10:52 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2017-06-10 21:33:55 +00:00
|
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
2011-07-31 23:14:36 +00:00
|
|
|
* @package Cake.Log
|
|
|
|
* @since CakePHP(tm) v 2.0
|
2017-06-10 22:23:14 +00:00
|
|
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
2011-07-31 23:14:36 +00:00
|
|
|
*/
|
2011-01-28 06:22:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* CakeLogStreamInterface is the interface that should be implemented
|
|
|
|
* by all classes that are going to be used as Log streams.
|
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Log
|
2011-01-28 06:22:54 +00:00
|
|
|
*/
|
|
|
|
interface CakeLogInterface {
|
2012-03-04 01:24:02 +00:00
|
|
|
|
2011-01-28 06:22:54 +00:00
|
|
|
/**
|
|
|
|
* Write method to handle writes being made to the Logger
|
|
|
|
*
|
2014-05-31 21:36:05 +00:00
|
|
|
* @param string $type Message type.
|
|
|
|
* @param string $message Message to write.
|
2011-01-28 06:22:54 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function write($type, $message);
|
2012-03-04 01:24:02 +00:00
|
|
|
|
|
|
|
}
|