Do not spam logs for inventory events

This commit is contained in:
nicolas.dorier
2021-01-11 23:33:21 +09:00
parent 0c79474e0c
commit f027d36db8

View File

@@ -136,6 +136,11 @@ namespace BTCPayServer.HostedServices
public string[] AppId { get; set; }
public Dictionary<string, int> Items { get; set; }
public bool Deduct { get; set; }
public override string ToString()
{
return string.Empty;
}
}
}
}