将rollbar集成到我的Cakephp项目中

时间:2017-06-13 14:13:50

标签: cakephp rollbar

我不想将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。

1 个答案:

答案 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);