summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/api/Behavior/Internal/LogWriter/NoopLogWriter.php
blob: f7529c082072b94a3b3255a4da279d65f1da4be8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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
    }
}