Skip to content

Commit

Permalink
changed access level
Browse files Browse the repository at this point in the history
  • Loading branch information
granstel committed Feb 25, 2024
1 parent befeb67 commit fce2b07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dodo1000Bot.Api/Jobs/CheckAndNotifyJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class CheckAndNotifyJob<TService, TConfiguration> : RepeatableJob
{
private readonly IServiceProvider _provider;

public CheckAndNotifyJob(ILogger<CheckAndNotifyJob<TService, TConfiguration>> log,
protected CheckAndNotifyJob(ILogger<CheckAndNotifyJob<TService, TConfiguration>> log,
IServiceProvider provider,
TConfiguration configuration) : base(log, configuration.RefreshEveryTime)
{
Expand Down
2 changes: 1 addition & 1 deletion Dodo1000Bot.Api/Jobs/RepeatableJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public abstract class RepeatableJob : BackgroundService
private readonly TimeSpan _repeatEveryTime;
private readonly string _jobName;

protected ILogger Log { get; }
private ILogger Log { get; }

protected RepeatableJob(ILogger log, TimeSpan repeatEveryTime)
{
Expand Down

0 comments on commit fce2b07

Please sign in to comment.