将滚动条集成到我的 Cakephp 项目中
integrate rollbar to my Cakephp project
我不想将 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 应用程序配置滚动条。
我应该把这段代码放在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);
我不想将 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 应用程序配置滚动条。
我应该把这段代码放在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);