log app id when not found

vnext
Paul Schneider 6 years ago
parent 5d5a3b4d03
commit aff5916603
1 changed files with 1 additions and 1 deletions

@ -21,7 +21,7 @@ namespace Yavsc
logger.LogError("no db!");
Client app = _dbContext.Applications.FirstOrDefault(x => x.Id == clientId);
if (app==null)
logger.LogError("no app!");
logger.LogError($"no app for <{clientId}>");
return app;
}
private readonly ConcurrentDictionary<string, string> _authenticationCodes = new ConcurrentDictionary<string, string>(StringComparer.Ordinal);

Loading…