Skip to content
This repository was archived by the owner on Dec 18, 2018. It is now read-only.

Commit dff3a4f

Browse files
committed
Reacting to verbose rename
1 parent 706ff04 commit dff3a4f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

samples/SampleApp/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory, IAp
2222
//ksi.ThreadCount = 4;
2323
ksi.NoDelay = true;
2424

25-
loggerFactory.AddConsole(LogLevel.Debug);
25+
loggerFactory.AddConsole(LogLevel.Trace);
2626

2727
var testCertPath = Path.Combine(
2828
env.ApplicationBasePath,

src/Microsoft.AspNet.Server.Kestrel/Filter/LoggingStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ private void Log(string method, int count, byte[] buffer, int offset)
123123
builder.Append((char)buffer[i]);
124124
}
125125

126-
_logger.LogVerbose(builder.ToString());
126+
_logger.LogDebug(builder.ToString());
127127
}
128128
}
129129
}

0 commit comments

Comments
 (0)