amirnajmi79 / laravel-monolog-telegram
Telegram Handler for Monolog
v0.3.5.3
2023-05-12 14:39 UTC
Requires
- ext-curl: *
- monolog/monolog: ^3.0
This package is not auto-updated.
Last update: 2024-10-26 21:03:59 UTC
README
🔔 Telegram Handler for Monolog
Installation
Install using composer:
composer require amirnajmi79/laravel-monolog-telegram
Usage
Open config/logging.php and change the file
'channels' => [ 'stack' => [ 'driver' => 'stack', 'channels' => ['single', 'telegram'], ], .... 'telegram' => [ 'driver' => 'monolog', 'level' => 'debug', 'handler' => TheCoder\MonologTelegram\TelegramBotHandler::class, 'handler_with' => [ 'token' => env('LOG_TELEGRAM_BOT_TOKEN'), 'chat_id' => env('LOG_TELEGRAM_CHAT_ID'), 'bot_api' => env('LOG_TELEGRAM_BOT_API', 'https://api.telegram.org/bot'), 'proxy' => env('LOG_TELEGRAM_BOT_PROXY', null), ], 'formatter' => TheCoder\MonologTelegram\TelegramFormatter::class, 'formatter_with' => [ 'tags' => env('LOG_TELEGRAM_TAGS', null), ], ], ]
Add the following variables to your .env file.
LOG_TELEGRAM_BOT_TOKEN= LOG_TELEGRAM_CHAT_ID= #LOG_TELEGRAM_BOT_API='https://api.telegram.org/bot' # add tor proxy for restricted country #LOG_TELEGRAM_BOT_PROXY='socks5h://localhost:9050'