Azure.Storage.LoggingExtensions
namespace Azure.Storage
{
internal static class LoggingExtensions
{
public static IDisposable BeginLoggingScope(this HttpPipeline pipeline, string className, string member = null);
public static void LogMethodEnter(this HttpPipeline pipeline, string className, string member = null, string message = null);
public static void LogMethodExit(this HttpPipeline pipeline, string className, string member = null, string message = "");
public static void LogException(this HttpPipeline pipeline, Exception ex, string message = null);
public static void LogTrace(this HttpPipeline pipeline, string message = null);
}
}