* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 * @link http://elastic.co */ class EmptyLogger extends AbstractLogger implements LoggerInterface { /** * {@inheritDoc} */ public function log($level, $message, array $context = []) { return; } }