Replace Cosnsole.WriteLine with Debug.WriteLine (#6618)
This commit is contained in:
parent
2f6ff70dd4
commit
7883eb65a2
|
|
@ -71,7 +71,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
{
|
{
|
||||||
if (logger == null)
|
if (logger == null)
|
||||||
{
|
{
|
||||||
Console.WriteLine(location + Environment.NewLine + exception.ToString());
|
Debug.WriteLine(location + Environment.NewLine + exception.ToString());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue