Skip to content
This repository has been archived by the owner on Jun 10, 2020. It is now read-only.

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
pakrym committed May 2, 2017
1 parent d8ee0a2 commit 617b4be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
using System;
using System.Collections.Generic;

namespace Microsoft.ApplicationInsights.AspNetCore.Logging
namespace Microsoft.ApplicationInsights.AspNetCore.Logging
{
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;

/// <summary>
/// Class to control default debug logger and disable it if logger was added to <see cref="ILoggerFactory"/> explicetely.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static ILoggerFactory AddApplicationInsights(
IServiceProvider serviceProvider,
LogLevel minLevel)
{
factory.AddApplicationInsights(serviceProvider, (category, logLevel) => logLevel >= minLevel, () => { });
factory.AddApplicationInsights(serviceProvider, (category, logLevel) => logLevel >= minLevel);
return factory;
}

Expand Down

0 comments on commit 617b4be

Please sign in to comment.