internal static List <T> FilterWithLogging <T>( this List <T> list, Func <T, bool> predicate, ICoreLogger logger, string logPrefix, bool updateOriginalCollection = true) { if (logger.IsLoggingEnabled(LogLevel.Verbose)) { logger.Verbose($"{logPrefix} - item count before: {list.Count} "); } if (updateOriginalCollection) { list.RemoveAll(e => !predicate(e)); } else { list = list.Where(predicate).ToList(); } if (logger.IsLoggingEnabled(LogLevel.Verbose)) { logger.Verbose($"{logPrefix} - item count after: {list.Count} "); } return(list); }
internal static IEnumerable <T> FilterWithLogging <T>( this IEnumerable <T> list, Func <T, bool> predicate, ICoreLogger logger, string logPrefix) { if (logger.IsLoggingEnabled(LogLevel.Verbose)) { logger.Verbose($"{logPrefix} - item count before: {list.Count()} "); } list = list.Where(predicate); if (logger.IsLoggingEnabled(LogLevel.Verbose)) { logger.Verbose($"{logPrefix} - item count after: {list.Count()} "); } return(list); }
public async Task <IWebTokenRequestResultWrapper> GetTokenSilentlyAsync(WebAccount webAccount, WebTokenRequest webTokenRequest) { using (_logger.LogBlockDuration("WAM:GetTokenSilentlyAsync:webAccount")) { if (_logger.IsLoggingEnabled(LogLevel.Verbose)) { _logger.VerbosePii(webTokenRequest.ToLogString(true), webTokenRequest.ToLogString(false)); _logger.VerbosePii(webAccount.ToLogString(true), webAccount.ToLogString(false)); } var wamResult = await WebAuthenticationCoreManager.GetTokenSilentlyAsync(webTokenRequest, webAccount); return(new WebTokenRequestResultWrapper(wamResult)); } }
public void Log(ICoreLogger logger, LogLevel logLevel) { if (logger.IsLoggingEnabled(logLevel)) { StringBuilder withPii = new StringBuilder(); StringBuilder withoutPii = new StringBuilder(); withPii.AppendLine($"{Environment.NewLine}[MsalTokenResponse]"); withPii.AppendLine($"Error: {Error}"); withPii.AppendLine($"ErrorDescription: {ErrorDescription}"); withPii.AppendLine($"Scopes: {Scope} "); withPii.AppendLine($"ExpiresIn: {ExpiresIn}"); withPii.AppendLine($"RefreshIn: {RefreshIn}"); withPii.AppendLine($"AccessToken returned: {!string.IsNullOrEmpty(AccessToken)}"); withPii.AppendLine($"AccessToken Type: {TokenType}"); withPii.AppendLine($"RefreshToken returned: {!string.IsNullOrEmpty(RefreshToken)}"); withPii.AppendLine($"IdToken returned: {!string.IsNullOrEmpty(IdToken)}"); withPii.AppendLine($"ClientInfo: {ClientInfo}"); withPii.AppendLine($"FamilyId: {FamilyId}"); withPii.AppendLine($"WamAccountId exists: {!string.IsNullOrEmpty(WamAccountId)}"); withoutPii.AppendLine($"{Environment.NewLine}[MsalTokenResponse]"); withoutPii.AppendLine($"Error: {Error}"); withoutPii.AppendLine($"ErrorDescription: {ErrorDescription}"); withoutPii.AppendLine($"Scopes: {Scope} "); withoutPii.AppendLine($"ExpiresIn: {ExpiresIn}"); withoutPii.AppendLine($"RefreshIn: {RefreshIn}"); withoutPii.AppendLine($"AccessToken returned: {!string.IsNullOrEmpty(AccessToken)}"); withoutPii.AppendLine($"AccessToken Type: {TokenType}"); withoutPii.AppendLine($"RefreshToken returned: {!string.IsNullOrEmpty(RefreshToken)}"); withoutPii.AppendLine($"IdToken returned: {!string.IsNullOrEmpty(IdToken)}"); withoutPii.AppendLine($"ClientInfo returned: {!string.IsNullOrEmpty(ClientInfo)}"); withoutPii.AppendLine($"FamilyId: {FamilyId}"); withoutPii.AppendLine($"WamAccountId exists: {!string.IsNullOrEmpty(WamAccountId)}"); logger.Log(logLevel, withPii.ToString(), withoutPii.ToString()); } }