| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace Elasticsearch\Common;
- use Psr\Log\AbstractLogger;
- use Psr\Log\LoggerInterface;
- /**
- * Class EmptyLogger
- *
- * Logger that doesn't do anything. Similar to Monolog's NullHandler,
- * but avoids the overhead of partially loading Monolog
- *
- * @category Elasticsearch
- * @package Elasticsearch\Common
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- class EmptyLogger extends AbstractLogger implements LoggerInterface
- {
- /**
- * Logs with an arbitrary level.
- *
- * @param mixed $level
- * @param string $message
- * @param array $context
- *
- * @return null
- */
- public function log($level, $message, array $context = array())
- {
- return;
- }
- }
|