From be7b17b055c08f8dd7be73558c42ddd7ba465e21 Mon Sep 17 00:00:00 2001 From: Juan Sebastian Hoyos Ayala <19413848+hoyosjs@users.noreply.github.com> Date: Fri, 13 Mar 2026 00:45:36 -0700 Subject: [PATCH] Add missing authority parameter to log --- src/SymbolsAuth/SymbolReaderAuthenticationHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SymbolsAuth/SymbolReaderAuthenticationHandler.cs b/src/SymbolsAuth/SymbolReaderAuthenticationHandler.cs index bffbe5c6f..70f4a2113 100644 --- a/src/SymbolsAuth/SymbolReaderAuthenticationHandler.cs +++ b/src/SymbolsAuth/SymbolReaderAuthenticationHandler.cs @@ -633,7 +633,7 @@ private bool TryGetCachedToken(Uri authority, bool logExpiration, out AuthToken if (logExpiration) { - WriteLog("The authorization token for {0} has expired (or is close to expiration)."); + WriteLog("The authorization token for {0} has expired (or is close to expiration).", authority); } s_tokenCache.TryRemove(authority, out _);