novaday-co / laravel-rocket-chat-debugher
Laravel Rocket chat Debugher, push all logs to rocket chat channels
Package info
github.com/novaday-co/laravel-rocket-chat-debugher
Type:project
pkg:composer/novaday-co/laravel-rocket-chat-debugher
dev-master
2022-06-19 07:09 UTC
Requires
- jenssegers/agent: ^2.6
This package is auto-updated.
Last update: 2026-03-19 15:04:27 UTC
README
First you need to set your channel url to config/debugher.php
return [
'end_point' => YOUR_ROCKET_CHAT_CHANNEL_URL_WITH_TOKEN,
'channel_name' => YOUR_ROCKET_CHAT_CHANNEL_Name,
];
Then you need to import Logger to Exceptions/Handler.php
use Novaday\Debugher\Logger;
Finally, put the following code to Exceptions/Handler.php where ever you need to push log
resolve(Logger::class)
->fromUser(auth()->user())
->withIp(request()->ip())
->withException($exception)
->send();