minor change

This commit is contained in:
Paul Schneider
2021-05-20 20:35:11 +01:00
parent d80271dcbf
commit 41fbe54638
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ namespace nuget_host.Controllers
var apikey = dbContext.ApiKeys.SingleOrDefault(k => k.Id == clearkey);
if (apikey == null)
{
logger.LogInformation("403 : no api-key");
logger.LogError("403 : no api-key");
return Unauthorized();
}