From 410bd5ab9cc015774c10df969e34faf95ea69183 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Fri, 29 Apr 2022 16:01:25 +0900 Subject: [PATCH] Remove logs about pending invoices --- BTCPayServer/Services/Invoices/InvoiceRepository.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/BTCPayServer/Services/Invoices/InvoiceRepository.cs b/BTCPayServer/Services/Invoices/InvoiceRepository.cs index 071391c90..9f875447f 100644 --- a/BTCPayServer/Services/Invoices/InvoiceRepository.cs +++ b/BTCPayServer/Services/Invoices/InvoiceRepository.cs @@ -66,7 +66,6 @@ namespace BTCPayServer.Services.Invoices public async Task RemovePendingInvoice(string invoiceId) { - Logs.PayServer.LogInformation($"Remove pending invoice {invoiceId}"); using var ctx = _applicationDbContextFactory.CreateContext(); ctx.PendingInvoices.Remove(new PendingInvoiceData() { Id = invoiceId }); try