调试
Last updated
Last updated
try {
#.....
} catch (Exception $e) {
$status = 'fail';
app('api.exception')->report($e)
$exceptionMessage = $e->getMessage();
#...
}SENTRY_LARAVEL_DSN=app('log')->debug('debug');
app('log')->info('info');
app('log')->notice('notice');
app('log')->warning('warning');
app('log')->error('error');
app('log')->crit('critical');
app('log')->alert('alert');
app('log')->emerg('emerg');