novaday-co/laravel-rocket-chat-debugher

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

dev-master 2022-06-19 07:09 UTC

This package is auto-updated.

Last update: 2024-04-19 11:01:31 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();