我想把日志按照不同的类型存放
比如 info 命名为 laravel.info.log
error 命名为 laravel.error.log
我在 app.php 里面使用
$app->configureMonologUsing(function($monolog) {
$handlers = [
// List your handlers here
];
$monolog->setHandlers($handlers);
});
这里的handlers 应该怎么写?
我想把日志按照不同的类型存放
比如 info 命名为 laravel.info.log
error 命名为 laravel.error.log
我在 app.php 里面使用
$app->configureMonologUsing(function($monolog) {
$handlers = [
// List your handlers here
];
$monolog->setHandlers($handlers);
});
这里的handlers 应该怎么写?