Log and drivers 1.0.0
First verisons of yiisoft/log and some of the drivers called "targets" were released.
Log is PSR-3 compatible so using it in your apps is easy:
final class MyClass
{
private \Psr\Log\LoggerInterface $logger;
public function __construct(\Psr\Log\LoggerInterface $logger)
{
$this->logger = $logger;
}
public function doIt(): void
{
$this->logger->info('Doing it!');
// ...
}
}