log app id when not found
This commit is contained in:
parent
90e368c452
commit
6b0a13bb90
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ namespace Yavsc
|
||||||
logger.LogError("no db!");
|
logger.LogError("no db!");
|
||||||
Client app = _dbContext.Applications.FirstOrDefault(x => x.Id == clientId);
|
Client app = _dbContext.Applications.FirstOrDefault(x => x.Id == clientId);
|
||||||
if (app==null)
|
if (app==null)
|
||||||
logger.LogError("no app!");
|
logger.LogError($"no app for <{clientId}>");
|
||||||
return app;
|
return app;
|
||||||
}
|
}
|
||||||
private readonly ConcurrentDictionary<string, string> _authenticationCodes = new ConcurrentDictionary<string, string>(StringComparer.Ordinal);
|
private readonly ConcurrentDictionary<string, string> _authenticationCodes = new ConcurrentDictionary<string, string>(StringComparer.Ordinal);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue