Looking to hire Laravel developers? Try LaraJobs

laravel-rocket-chat-debugher maintained by novaday-co

Description
Laravel Rocket chat Debugher, push all logs to rocket chat channels
Author
Last update
2022/06/19 09:09 (dev-master)
License
Links
Downloads
106

Comments
comments powered by Disqus

Laravel Rocket chat Debugher

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();