Your IP : 216.73.217.55


Current Path : /home/lejardintz/www/administrator/components/com_akeeba/BackupEngine/Psr/Log/
Upload File :
Current File : /home/lejardintz/www/administrator/components/com_akeeba/BackupEngine/Psr/Log/NullLogger.php

<?php
/**
 * Akeeba Engine
 * The PHP-only site backup engine
 *
 * @copyright Copyright (c)2006-2019 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   GNU GPL version 3 or, at your option, any later version
 * @package   akeebaengine
 */

namespace Psr\Log;

// Protection against direct access
defined('AKEEBAENGINE') or die();

/**
 * This Logger can be used to avoid conditional log calls
 *
 * Logging should always be optional, and if no logger is provided to your
 * library creating a NullLogger instance to have something to throw logs at
 * is a good way to avoid littering your code with `if ($this->logger) { }`
 * blocks.
 */
class NullLogger extends AbstractLogger
{
    /**
     * Logs with an arbitrary level.
     *
     * @param mixed $level
     * @param string $message
     * @param array $context
     * @return null
     */
    public function log($level, $message, array $context = array())
    {
        // noop
    }
}