Skip to content

Commit

Permalink
wrong logger
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcrane committed Feb 12, 2024
1 parent 662c3be commit 1a516a4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions LeedsExperiment/Dashboard/Controllers/IIIFController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using Dlcs;
using Dlcs.Hydra;
using Fedora.Abstractions;
using Fedora.Abstractions.Transfer;
using IIIF;
using IIIF.ImageApi.V2;
using IIIF.Presentation.V3;
Expand All @@ -19,14 +18,14 @@ namespace Dashboard.Controllers
{
public class IIIFController : Controller
{
private readonly ILogger<OcflController> logger;
private readonly ILogger<IIIFController> logger;
private readonly IPreservation preservation;
private readonly IDlcs dlcs;

public IIIFController(
IPreservation preservation,
IDlcs dlcs,
ILogger<OcflController> logger)
ILogger<IIIFController> logger)
{
this.preservation = preservation;
this.logger = logger;
Expand Down

0 comments on commit 1a516a4

Please sign in to comment.