This commit is contained in:
2021-08-20 10:19:58 +08:00
parent 0dbf4ebc08
commit c3900b0259
+14
View File
@@ -1096,6 +1096,20 @@ if (!function_exists('debug')) {
}
if (!function_exists('info')) {
/**
* @param mixed $message
* @param string $method
* @throws Exception
*/
function info(mixed $message, string $method = 'app')
{
Kiri::app()->info($message, $method);
}
}
if (!function_exists('error')) {
/**