Event manager improvements. Changed to console.writeline instead of diagnostics

This commit is contained in:
watsonb8
2020-01-13 19:57:02 -05:00
parent 43c6a5a2c6
commit e796bf2f35
17 changed files with 165 additions and 73 deletions

View File

@ -69,11 +69,11 @@ namespace Aurora.Models.Media
await this.DataStream.WriteAsync(buffer, 0, buffer.Length);
}
System.Diagnostics.Debug.WriteLine("Done receiving stream");
Console.WriteLine("Done receiving stream");
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("Exception caught while loading remote audio:" + ex.Message);
Console.WriteLine("Exception caught while loading remote audio:" + ex.Message);
}
}
await base.Load();