Skip to content

Commit

Permalink
Fix email service logger
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Guldborg committed Dec 3, 2024
1 parent 019b4b0 commit 8fb7432
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coffeecard/CoffeeCard.Library/Services/v2/EmailService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ public class EmailService : IEmailService
private readonly IWebHostEnvironment _env;
private readonly EnvironmentSettings _environmentSettings;
private readonly IEmailSender _emailSender;
private readonly ILogger<AccountService> _logger;
private readonly ILogger<EmailService> _logger;

public EmailService(IEmailSender emailSender, EnvironmentSettings environmentSettings,
IWebHostEnvironment env, ILogger<AccountService> logger)
IWebHostEnvironment env, ILogger<EmailService> logger)
{
_emailSender = emailSender;
_environmentSettings = environmentSettings;
Expand Down

0 comments on commit 8fb7432

Please sign in to comment.