Skip to content

Commit

Permalink
Renamed from loggingservice to elasticlogging
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaustin700 committed Jan 15, 2021
1 parent 9c5cd4b commit 357f8a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@

namespace ElasticLogging
{
public class LoggingService : ILoggingService, IDisposable, IAsyncDisposable
public class ElasticLogging : IElasticLogging, IDisposable, IAsyncDisposable
{
private readonly ElasticClient _elasticClient;
private readonly string _logName;
private readonly bool _logToFile;
private readonly List<LogMessage> _pendingLogs;
private readonly LoggingSettings _settings;

public LoggingService(LoggingSettings settings, string name, bool logToFile)
public ElasticLogging(LoggingSettings settings, string name, bool logToFile)
{
_logName = name;
_logToFile = logToFile;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace ElasticLogging
{
public interface ILoggingService
public interface IElasticLogging
{
void Debug(string message);
Task DebugAsync(string message);
Expand Down

0 comments on commit 357f8a5

Please sign in to comment.