Skip to content

Commit

Permalink
Removed console writelines.
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferStrube committed Jun 5, 2024
1 parent 4accf2d commit 3fc84f0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public Oscillator(IElement element, SVGEditor.SVGEditor svg) : base(element, svg
_ = await audioNodeSlim.WaitAsync(200);
if (audioNode is null)
{
Console.WriteLine("NEW Oscillator!: " + Id);
OscillatorOptions options = new();
if (Frequency is { } f)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
public async Task AudioParamUpdatedAsync()
{
if (AudioParam is null) return;
Console.WriteLine("SET: " + value);
await AudioParam.SetValueAsync(value);
UpdateCallback?.Invoke(value);
}
Expand Down

0 comments on commit 3fc84f0

Please sign in to comment.