internal static AzureClient.IConfigurable WithLogLevel(this AzureClient.IConfigurable azure, HealthCheckOptions options)
        {
            if (options.LogLevel == null)
            {
                return(azure);
            }

            return(azure.WithLogLevel(options.LogLevel.Value));
        }