14 lines
251 B
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
|
||
|
}
|
||
|
}
|