Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/csharp/Microsoft.Spark/Services/ILoggerService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.Spark.Services
/// <summary>
/// Defines a logger what be used in service
/// </summary>
internal interface ILoggerService
public interface ILoggerService
{
/// <summary>
/// Gets a value indicating whether logging is enabled for the Debug level.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.Spark.Services
/// <summary>
/// Used to get logger service instances for different types
/// </summary>
internal class LoggerServiceFactory
public class LoggerServiceFactory
{
private static Lazy<ILoggerService> s_loggerService =
new Lazy<ILoggerService>(() => GetDefaultLogger());
Expand Down