diff --git a/Sources/apiLOL/Controllers/ControllerChampions.cs b/Sources/apiLOL/Controllers/ControllerChampions.cs index 337e44c..caf6594 100644 --- a/Sources/apiLOL/Controllers/ControllerChampions.cs +++ b/Sources/apiLOL/Controllers/ControllerChampions.cs @@ -105,6 +105,8 @@ namespace apiLOL.Controllers [HttpDelete("{name}")] public async Task Delete(String name) { + _logger.LogInformation($"methode Delete de ControllerChampions appelée avec le paramètre name: {name}"); + try { var champ = (await data.ChampionsMgr.GetItemsByName(name, 0, 1)).First();