3

我目前正在使用带有 Monolog 的 Silex 框架作为日志记录机制。通过使用以下组件,我能够成功地将默认的 Symfony WebProfiler 集成到我的项目中 - https://github.com/silexphp/Silex-WebProfiler (Silex-WebProfiler)。它可以工作,但不幸的是它无法从其_profiler页面显示来自 Monolog 的日志消息。有人知道如何解决这个问题吗?

如果这完全相关,这是我的配置:

use Silex\Provider;
...
//Monolog
$app->register(new Provider\MonologServiceProvider(), array(
    'monolog.logfile' => __DIR__ . '/../log/development.log',
    'monolog.name'    => 'MyAppName'
));
...
// Web Profiler
if ($app['debug']) {
    $app->register(new Provider\WebProfilerServiceProvider(), array(
        'profiler.cache_dir' => __DIR__.'/../cache/profiler/',
        'profiler.mount_prefix' => '/_profiler', // this is the default
    ));    
}
4

1 回答 1

6

我也想知道这一点,我在 MonologServiceProvider 中找到了这些行。

if ($bridge = class_exists('Symfony\Bridge\Monolog\Logger')) {
    $app['monolog.handler.debug'] = function () use ($app) {
        return new DebugHandler($app['monolog.level']);
    };
}

Symfony Monolog Bridge 组件启用了 Web Profiler 的日志记录。我将此添加到我的composer.json

"symfony/monolog-bridge": "~2.3"

现在,我在 Web Profiler 的那个面板中看到了日志条目。(确保 monolog-bridge 的版本与您在 .symfony 中声明的其他 Symfony 组件的版本一致可能是个好主意composer.json。)

于 2013-09-12T22:43:12.407 回答