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

@@ -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))
{