diff --git a/src/Money.Blazor.Host/Services/CurrencyFormatter.cs b/src/Money.Blazor.Host/Services/CurrencyFormatter.cs index 5d7b6d9f..28bf6604 100644 --- a/src/Money.Blazor.Host/Services/CurrencyFormatter.cs +++ b/src/Money.Blazor.Host/Services/CurrencyFormatter.cs @@ -87,7 +87,6 @@ private string FormatInternal(Price price, bool applyUserDigits = true, bool app if (applyPlusForPositiveNumbers && price.Value > 0) value = $"+{value}"; - Console.WriteLine($"DEBUG {value} {applyPlusForPositiveNumbers}"); return value; }