From f027d36db8ea5ce46255022d7a173f0088228b4f Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Mon, 11 Jan 2021 23:33:21 +0900 Subject: [PATCH] Do not spam logs for inventory events --- .../HostedServices/AppInventoryUpdaterHostedService.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BTCPayServer/HostedServices/AppInventoryUpdaterHostedService.cs b/BTCPayServer/HostedServices/AppInventoryUpdaterHostedService.cs index 6a89c9e13..49e9e2515 100644 --- a/BTCPayServer/HostedServices/AppInventoryUpdaterHostedService.cs +++ b/BTCPayServer/HostedServices/AppInventoryUpdaterHostedService.cs @@ -136,6 +136,11 @@ namespace BTCPayServer.HostedServices public string[] AppId { get; set; } public Dictionary Items { get; set; } public bool Deduct { get; set; } + + public override string ToString() + { + return string.Empty; + } } } }