1<?php
2/**
3 * Elasticsearch PHP client
4 *
5 * @link      https://github.com/elastic/elasticsearch-php/
6 * @copyright Copyright (c) Elasticsearch B.V (https://www.elastic.co)
7 * @license   http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
8 * @license   https://www.gnu.org/licenses/lgpl-2.1.html GNU Lesser General Public License, Version 2.1
9 *
10 * Licensed to Elasticsearch B.V under one or more agreements.
11 * Elasticsearch B.V licenses this file to you under the Apache 2.0 License or
12 * the GNU Lesser General Public License, Version 2.1, at your option.
13 * See the LICENSE file in the project root for more information.
14 */
15
16
17declare(strict_types = 1);
18
19namespace Elasticsearch\Common;
20
21use Psr\Log\AbstractLogger;
22use Psr\Log\LoggerInterface;
23
24/**
25 * Class EmptyLogger
26 *
27 * Logger that doesn't do anything.  Similar to Monolog's NullHandler,
28 * but avoids the overhead of partially loading Monolog
29 */
30class EmptyLogger extends AbstractLogger implements LoggerInterface
31{
32    /**
33     * {@inheritDoc}
34     */
35    public function log($level, $message, array $context = [])
36    {
37        return;
38    }
39}
40