Skip to content

Commit

Permalink
[skip ci] Fix loggin output
Browse files Browse the repository at this point in the history
  • Loading branch information
nopara73 committed Nov 2, 2018
1 parent 297d5ae commit 8d538e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WalletWasabi/Services/CcjClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ private async Task TryProcessRoundStateAsync(long ongoingRoundId)
var toLog = $"{nameof(unsignedCoinJoin)} hex: {unsignedCoinJoin.ToHex()}\n";
foreach (var elem in myDic)
{
toLog += $"\tInput Index: {elem.Key}\t Signature: {elem.Value.ToString()}/n";
toLog += $"\tInput Index: {elem.Key}\t Signature: {elem.Value.ToString()}\n";
}
Logger.LogWarning<CcjClient>(toLog);

Expand Down

0 comments on commit 8d538e4

Please sign in to comment.