forked from GNUsocial/gnu-social
[CORE][EVENTS] Bring existing Events and Boostrapper back
- Adapt the existing event system to rely on Symfony's event dispatcher
This commit is contained in:
26
src/Util/Log.php
Normal file
26
src/Util/Log.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
namespace App\Util;
|
||||
|
||||
use Psr\Log\LoggerInterface;
|
||||
|
||||
class Log
|
||||
{
|
||||
private static ?LoggerInterface $logger;
|
||||
|
||||
public static function setLogger($l): void
|
||||
{
|
||||
self::$logger = $l;
|
||||
}
|
||||
public static function error(string $msg): void
|
||||
{
|
||||
self::$logger->error($msg);
|
||||
}
|
||||
public static function info(string $msg): void
|
||||
{
|
||||
self::$logger->info($msg);
|
||||
}
|
||||
public static function debug(string $msg): void
|
||||
{
|
||||
$logger->debug($msg);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user