Add cooldown logging.

This commit is contained in:
West14
2022-01-03 15:55:42 +02:00
parent 36af127845
commit f9bfc88c25
3 changed files with 19 additions and 7 deletions
+2 -1
View File
@@ -5,6 +5,7 @@ using System.Threading.Tasks;
using BotFramework.Attributes;
using BotFramework.Enums;
using Kruzya.TelegramBot.Core.Data;
using Microsoft.Extensions.Logging;
namespace West.Entertainment.Handler.Fun
{
@@ -29,6 +30,6 @@ namespace West.Entertainment.Handler.Fun
=> await base.HandleAnimation();
public Python(CoreContext db) : base(db) { }
public Python(CoreContext db, ILogger<Python> logger) : base(db, logger) { }
}
}