dev-master
9999999-dev
MIT
The Requires
by CoreTech Co.,Ltd.
1.0.2
1.0.2.0
MIT
The Requires
by CoreTech Co.,Ltd.
1.0.1
1.0.1.0
MIT
The Requires
by CoreTech Co.,Ltd.
1.0
1.0.0.0
MIT
The Requires
by CoreTech Co.,Ltd.
Wallogit.com
2017 © Pedro Peláez
Sentry is a realtime event logging. This package corresponds to PHP and Javascript., (*1)
If you use git submodule or download zip, you must install vendors, (*2)
$ cd fuel/packages/sentry $ php composer.phar install
In app/config/config.php, (*3)
'always_load' => array('packages' => array(
'sentry',
...
Copy packages/sentry/config/sentry.php to under app/config directory and edit, (*4)
<?php echo Sentry::get_raven_client(); ?>
// Send exception
$opt = array('tags' => array('MyTag' => 'MyTag Message'));
Sentry::send_exception(new Exception('message'), $opt);
// Send message
$opt = array('tags' => array('MyTag' => 'MyTag Message'));
Sentry::send_message('message', $opt);
Sentry::send_message('%04d-%02d-%02d', $opt, array(2013,4,1));
For more information, see raven-php, (*5)
<?php echo Sentry::get_raven_client(array('logger' => 'MyLogger')); ?>
For more information, see raven-js, (*6)
try {
errorThrowingCode();
} catch(e) {
Raven.captureException(e);
}
MIT
MIT
MIT
MIT