We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb92d1e commit 09eaeedCopy full SHA for 09eaeed
app/Http/Controllers/WebHookController.php
@@ -31,7 +31,7 @@ public function telegram(Request $request): void
31
);
32
}
33
34
- Log::channel('tg-bot')->info(json_encode($request->all()));
+ Log::channel('telegram')->info(json_encode($request->all()));
35
36
TelegramMessage::dispatch(
37
$request->collect('message'),
config/logging.php
@@ -137,14 +137,6 @@
137
'emergency' => [
138
'path' => storage_path('logs/laravel.log'),
139
],
140
-
141
- 'tg-bot' => [
142
- 'driver' => 'daily',
143
- 'path' => storage_path('logs/tg-bot/tg-bot.log'),
144
- 'level' => env('LOG_LEVEL', 'debug'),
145
- 'replace_placeholders' => true,
146
- ],
147
148
149
150
];
0 commit comments