0

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

4

1 回答 1

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);
于 2017-06-13T17:40:39.337 回答