Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/novaday-co/laravel-rocket-chat-debugher

Laravel Rocket chat Debugher, push all logs to rocket chat channels
https://github.com/novaday-co/laravel-rocket-chat-debugher

Last synced: about 13 hours ago
JSON representation

Laravel Rocket chat Debugher, push all logs to rocket chat channels

Awesome Lists containing this project

README

        

# Laravel Rocket chat Debugher

### First you need to set your channel url to config/debugher.php
```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
```php
use Novaday\Debugher\Logger;
```

### Finally, put the following code to Exceptions/Handler.php where ever you need to push log

```php
resolve(Logger::class)
->fromUser(auth()->user())
->withIp(request()->ip())
->withException($exception)
->send();
```