我不想将 Rollbar 集成到我的 cakephp 项目中,但我不知道在哪里包含引用 rolbar 的代码在我的应用程序中?我用过这段代码
<?php
use \Rollbar\Rollbar;
// Installs global error and exception handlers
$config = array(
// required
'access_token' => 'MY_ACCESS_TOKEN',
// optional - environment name
'environment' => 'production',
);
Rollbar::init($config);
但它仅适用于我添加到的页面,所以请帮助我如何为 cakephp 应用程序配置 rollbar。