This commit is contained in:
b.nodon
2026-03-27 09:11:03 +01:00
parent 8211dbbd8e
commit b7f06c8e8b
2 changed files with 2 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ namespace Webzine.WebApplication.Areas.Administration.Controllers
if (commentaire == null)
{
this.logger.LogWarning("Commentaire avec ID {Id} introuvable pour suppression.", id);
this._logger.LogWarning("Commentaire avec ID {Id} introuvable pour suppression.", id);
return RedirectToAction("Index");
}

View File

@@ -31,7 +31,7 @@
[HttpGet("/artiste/{nom}")]
public IActionResult Index(string nom)
{
this._logger.LogInformation("Tentative d'accès à l'artiste avec le nom : {NomArtiste}", nom);
this.logger.LogInformation("Tentative d'accès à l'artiste avec le nom : {NomArtiste}", nom);
if (string.IsNullOrEmpty(nom))
{