Stop spamming logs with event aggregator logging

This commit is contained in:
nicolas.dorier 2023-05-19 15:24:20 +09:00
parent 6c6544bf9b
commit ee738a29f0
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE

View File

@ -4,6 +4,7 @@ using System.Linq;
using System.Threading;
using System.Threading.Channels;
using System.Threading.Tasks;
using BTCPayServer.Events;
using BTCPayServer.Logging;
using Microsoft.Extensions.Logging;
@ -86,9 +87,6 @@ namespace BTCPayServer
}
}
var log = evt.ToString();
if (!String.IsNullOrEmpty(log))
Logs.Events.LogInformation(log);
foreach (var sub in actionList)
{
try