Skip to content

Commit

Permalink
Added Microsoft.Extensions.Logging.ILoggerFactory to ignored interfac…
Browse files Browse the repository at this point in the history
…es as suggested in issue #38
  • Loading branch information
David Störmer committed Jun 15, 2017
1 parent 0df3f7b commit 6857c8b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ public DefaultConfiguration() {
"System.Resources.ResourceWriter",
};
IgnoredInterfaces = new HashSet<string> {
"System.Collections.Generic.IEnumerator"
};
"System.Collections.Generic.IEnumerator",
"Microsoft.Extensions.Logging.ILoggerFactory"
};
IgnoredTypes = new HashSet<string> {
"System.Threading.Tasks.Task",
};
Expand Down

0 comments on commit 6857c8b

Please sign in to comment.