Skip to content

Commit d6784dd

Browse files
committed
fix: logger type
1 parent ff63926 commit d6784dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GZCTF/Repositories/GameNoticeRepository.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ namespace CTFServer.Repositories;
1111
public class GameNoticeRepository : RepositoryBase, IGameNoticeRepository
1212
{
1313
private readonly IDistributedCache cache;
14-
private readonly ILogger<GameEventRepository> logger;
14+
private readonly ILogger<GameNoticeRepository> logger;
1515
private readonly IHubContext<UserHub, IUserClient> hubContext;
1616

1717
public GameNoticeRepository(IDistributedCache _cache,
18-
ILogger<GameEventRepository> _logger,
18+
ILogger<GameNoticeRepository> _logger,
1919
IHubContext<UserHub, IUserClient> hub,
2020
AppDbContext _context) : base(_context)
2121
{

0 commit comments

Comments
 (0)