我不想将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。
答案 0 :(得分:0)
我应该将此代码放在 bootstrap.php
中use \Rollbar\Rollbar;
// Installs global error and exception handlers
$config = array(
// required
'access_token' => 'ACCESS_TOKEN',
// optional - environment name
'environment' => 'production',
// optional - path to directory your code is in. Used for linking stack traces.
'root' => '/Users/brian/www/myapp'
);
Rollbar::init($config);