ttrss/vendor/open-telemetry/api/Logs/LoggerInterface.php

11 lines
152 B
PHP
Raw Normal View History

2023-10-20 14:12:29 +00:00
<?php
declare(strict_types=1);
namespace OpenTelemetry\API\Logs;
interface LoggerInterface
{
public function emit(LogRecord $logRecord): void;
}