Microsoft.Identity.Client.Internal.Logger.NullLogger
namespace Microsoft.Identity.Client.Internal.Logger
{
internal class NullLogger : ILoggerAdapter
{
public string ClientName { get; }
public string ClientVersion { get; }
public Guid CorrelationId { get; }
public bool PiiLoggingEnabled { get; }
public string ClientInformation { get; }
public bool IsDefaultPlatformLoggingEnabled { get; }
public IIdentityLogger IdentityLogger { get; }
public bool IsLoggingEnabled(LogLevel logLevel);
public void Log(LogLevel logLevel, string messageWithPii, string messageScrubbed);
public DurationLogHelper LogBlockDuration(string measuredBlockName, LogLevel logLevel = LogLevel.Verbose);
public DurationLogHelper LogMethodDuration(LogLevel logLevel = LogLevel.Verbose, string methodName = null, string filePath = null);
public NullLogger();
}
}