* Improved filter fallback search logic

* Fixed Environment variable filter logic
* Changed some logs to trace level
* Added new Message extension methods
This commit is contained in:
2025-08-10 02:48:45 +04:00
parent 0cf8ea27b6
commit 3a88feb5f1
12 changed files with 158 additions and 73 deletions
@@ -33,7 +33,7 @@ namespace Telegrator.Hosting.Polling
/// <inheritdoc/>
public override Task HandleUpdateAsync(ITelegramBotClient botClient, Update update, CancellationToken cancellationToken)
{
Logger.LogInformation("Received update of type \"{type}\"", update.Type);
//Logger.LogInformation("Received update of type \"{type}\"", update.Type);
return base.HandleUpdateAsync(botClient, update, cancellationToken);
}