summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/api/Behavior/Internal/LogWriter/LogWriterInterface.php
blob: 046d21fc990593a954ecd65cf714159a8d0fb824 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

declare(strict_types=1);

namespace OpenTelemetry\API\Behavior\Internal\LogWriter;

interface LogWriterInterface
{
    public function write($level, string $message, array $context): void;
}