Replace Cosnsole.WriteLine with Debug.WriteLine (#6618)

This commit is contained in:
Kahbazi 2019-01-12 01:54:10 +03:30 committed by Chris Ross
parent 2f6ff70dd4
commit 7883eb65a2
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
{
if (logger == null)
{
Console.WriteLine(location + Environment.NewLine + exception.ToString());
Debug.WriteLine(location + Environment.NewLine + exception.ToString());
}
else
{