diff --git a/src/Yavsc/Startup/Startup.OAuthHelpers.cs b/src/Yavsc/Startup/Startup.OAuthHelpers.cs index 0aee7770..da0bef2e 100644 --- a/src/Yavsc/Startup/Startup.OAuthHelpers.cs +++ b/src/Yavsc/Startup/Startup.OAuthHelpers.cs @@ -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 _authenticationCodes = new ConcurrentDictionary(StringComparer.Ordinal);