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

Commit da3bc9c

Browse files
committed
Make TraceSourceLogger public
1 parent 093f2f6 commit da3bc9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Microsoft.Extensions.Logging.TraceSource/TraceSourceLogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Microsoft.Extensions.Logging.TraceSource
99
{
10-
internal class TraceSourceLogger : ILogger
10+
public class TraceSourceLogger : ILogger
1111
{
1212
private readonly DiagnosticsTraceSource _traceSource;
1313

src/Microsoft.Extensions.Logging.TraceSource/TraceSourceScope.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Microsoft.Extensions.Logging.TraceSource
99
/// <summary>
1010
/// Provides an IDisposable that represents a logical operation scope based on System.Diagnostics LogicalOperationStack
1111
/// </summary>
12-
internal class TraceSourceScope : IDisposable
12+
public class TraceSourceScope : IDisposable
1313
{
1414
// To detect redundant calls
1515
private bool _isDisposed;

0 commit comments

Comments
 (0)