rafaellaurindo/laravel-telegram-logging

Send Laravel logs to a Telegram chat via Telegram Bot.
27,205 33
Install
composer require rafaellaurindo/laravel-telegram-logging
Latest Version:v1.0.2
PHP:>=7.2
License:MIT
Last Updated:Dec 9, 2024
Links: GitHub  ·  Packagist
Maintainer: rafaellaurindo

Laravel Telegram Logging

Send Laravel logs to a Telegram chat via Telegram Bot.

Total Downloads Donate license

Installation

To install the package you can use Composer.

composer require rafaellaurindo/laravel-telegram-logging

Publish the package configuration file using the following artisan command:

php artisan vendor:publish --provider "RLaurindo\TelegramLogger\TelegramLoggerServiceProvider"

To send messages to your Telegram Chat, you first need a Telegram Bot. If you don't have one, see in this Telegram Instructions how to create one.

Set your Bot Token and chat_id (user, channel or group that will receive log messages) and set as environment variable.

Add in your .env, the follows variables:

TELEGRAM_BOT_TOKEN=bot_token
TELEGRAM_CHAT_ID=chat_id

Usage

Add the new Log Channel in config/logging.php:

'telegram' => [
    'driver' => 'custom',
    'via'    => RLaurindo\TelegramLogger\TelegramLogger::class,
    'level'  => 'debug',
]

If you use the stack channel as default logger, you can just the telegram channel to your stack:

'stack' => [
    'driver' => 'stack',
    'channels' => ['single', 'telegram'],
]

Or you can simply change the default logging channel in the .env file.

LOG_CHANNEL=telegram

Great! Your Laravel project can now send logs to your Telegram chat.

You can use Laravel Log Facade to send logs to your chat:

// Use the Laravel Log Facade
use Illuminate\Support\Facades\Log;
...

// All Laravel log leves are avaiable
Log::channel('telegram')->emergency($message);
Log::channel('telegram')->alert($message);
Log::channel('telegram')->critical($message);
Log::channel('telegram')->error($message);
Log::channel('telegram')->warning($message);
Log::channel('telegram')->notice($message);
Log::channel('telegram')->info($message);
Log::channel('telegram')->debug($message);

Telegram Instructions

To use this package, you need to create a Telegram bot to send messages to your chat.

If you need help, check out these Telegram Instructions that I created for you.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Donations are welcome

If this project help you reduce time to develop, you can give me a cup of coffee :)

Donate with Paypal:

paypal

License

MIT

Related Packages

gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

580,311,802 34,925
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444