ttrss/vendor/open-telemetry/api/Behavior/Internal/LogWriter/NoopLogWriter.php

14 lines
251 B
PHP

<?php
declare(strict_types=1);
namespace OpenTelemetry\API\Behavior\Internal\LogWriter;
class NoopLogWriter implements LogWriterInterface
{
public function write($level, string $message, array $context): void
{
//do nothing
}
}