reduce logging

This commit is contained in:
Kukks
2023-06-05 13:55:38 +02:00
parent 61855146c2
commit 426a53905e
2 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@
<PropertyGroup>
<Product>Wabisabi Coinjoin</Product>
<Description>Allows you to integrate your btcpayserver store with coinjoins.</Description>
<Version>1.0.46</Version>
<Version>1.0.47</Version>
</PropertyGroup>
<!-- Plugin development properties -->

View File

@@ -227,7 +227,7 @@ public class WabisabiCoordinatorClientInstance
switch (e)
{
case CoinJoinStatusEventArgs coinJoinStatusEventArgs:
_logger.LogInformation(coinJoinStatusEventArgs.CoinJoinProgressEventArgs.GetType() + " :" +
_logger.LogTrace(coinJoinStatusEventArgs.CoinJoinProgressEventArgs.GetType() + " :" +
e.Wallet.WalletName);
break;
case CompletedEventArgs completedEventArgs:
@@ -261,7 +261,7 @@ public class WabisabiCoordinatorClientInstance
_ = CoinJoinManager.StartAsync(loadedEventArgs.Wallet, stopWhenAllMixed, false, CancellationToken.None);
break;
case StartErrorEventArgs errorArgs:
_logger.LogInformation("Could not start wallet for coinjoin:" + errorArgs.Error.ToString() + " :" + e.Wallet.WalletName);
_logger.LogTrace("Could not start wallet for coinjoin:" + errorArgs.Error.ToString() + " :" + e.Wallet.WalletName);
break;
case StoppedEventArgs stoppedEventArgs:
_logger.LogInformation("Stopped wallet for coinjoin: " + stoppedEventArgs.Reason + " :" + e.Wallet.WalletName);