Reacting to verbose rename

This commit is contained in:
John Luo 2015-12-02 17:20:28 -08:00
parent bae9771a81
commit 0f0999161d
1 changed files with 6 additions and 6 deletions

View File

@ -57,9 +57,9 @@ namespace Microsoft.AspNet.Hosting.Internal
public static void Starting(this ILogger logger) public static void Starting(this ILogger logger)
{ {
if (logger.IsEnabled(LogLevel.Verbose)) if (logger.IsEnabled(LogLevel.Debug))
{ {
logger.LogVerbose( logger.LogDebug(
eventId: LoggerEventIds.Starting, eventId: LoggerEventIds.Starting,
data: "Hosting starting"); data: "Hosting starting");
} }
@ -67,9 +67,9 @@ namespace Microsoft.AspNet.Hosting.Internal
public static void Started(this ILogger logger) public static void Started(this ILogger logger)
{ {
if (logger.IsEnabled(LogLevel.Verbose)) if (logger.IsEnabled(LogLevel.Debug))
{ {
logger.LogVerbose( logger.LogDebug(
eventId: LoggerEventIds.Started, eventId: LoggerEventIds.Started,
data: "Hosting started"); data: "Hosting started");
} }
@ -77,9 +77,9 @@ namespace Microsoft.AspNet.Hosting.Internal
public static void Shutdown(this ILogger logger) public static void Shutdown(this ILogger logger)
{ {
if (logger.IsEnabled(LogLevel.Verbose)) if (logger.IsEnabled(LogLevel.Debug))
{ {
logger.LogVerbose( logger.LogDebug(
eventId: LoggerEventIds.Shutdown, eventId: LoggerEventIds.Shutdown,
data: "Hosting shutdown"); data: "Hosting shutdown");
} }