cloudformation-plus-plus: cfn template preprocessor
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

50 lines
957 B

<?php
declare(strict_types=1);
class Log
{
public static function emergency(string $message, array $context = []): void
{
}
public static function alert(string $message, array $context = []): void
{
}
public static function critical(string $message, array $context = []): void
{
}
public static function error(string $message, array $context = []): void
{
}
public static function warning(string $message, array $context = []): void
{
}
public static function notice(string $message, array $context = []): void
{
}
public static function info(string $message, array $context = []): void
{
}
public static function debug(string $message, array $context = []): void
{
}
public static function log($level, string $message, array $context = []): void
{
}
public static function channel(string $channel = null)
{
}
public static function stack(array $channels, string $channel = null): \Psr\Log\LoggerInterface
{
}
}