From 0d70743a4771f623fd66ca511170e0fc1869f7d8 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Fri, 14 May 2021 17:17:46 +0900 Subject: [PATCH] Do not spam logs with events --- BTCPayServer/Events/InvoicePaymentMethodActivated.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Events/InvoicePaymentMethodActivated.cs b/BTCPayServer/Events/InvoicePaymentMethodActivated.cs index 4ad82254f..2f20922f8 100644 --- a/BTCPayServer/Events/InvoicePaymentMethodActivated.cs +++ b/BTCPayServer/Events/InvoicePaymentMethodActivated.cs @@ -18,7 +18,7 @@ namespace BTCPayServer.Events public override string ToString() { - return $"Invoice {InvoiceId} activated payment method {PaymentMethodId}"; + return string.Empty; } } }