summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/api/Logs/LoggerInterface.php
blob: 89477c8d281bb2bd786af88bfc6e5eeb7e5b8d81 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

declare(strict_types=1);

namespace OpenTelemetry\API\Logs;

interface LoggerInterface
{
    public function emit(LogRecord $logRecord): void;
}