From 1b9d6e7d8a76afec970741eddd4c9ea517c90fc3 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 1 Dec 2025 13:02:58 +0100 Subject: [PATCH] Remove logger parameter from InvokeRecActionCommandHandler The constructor of the `InvokeRecActionCommandHandler` class was updated to remove the optional `ILogger? logger` parameter. This change simplifies the constructor by no longer requiring or accepting a logger instance. --- .../RecActions/Commands/InvokeRecActionCommand.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs b/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs index 75655d8..d064d9d 100644 --- a/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs +++ b/src/ReC.Application/RecActions/Commands/InvokeRecActionCommand.cs @@ -22,8 +22,7 @@ public static class InvokeRecActionCommandExtensions public class InvokeRecActionCommandHandler( ISender sender, IHttpClientFactory clientFactory, - IConfiguration? config = null, - ILogger? logger = null + IConfiguration? config = null ) : IRequestHandler { public async Task Handle(InvokeRecActionCommand request, CancellationToken cancel)