// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.AspNet.Diagnostics.Elm; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; namespace Microsoft.AspNet.Builder { public static class ElmExtensions { /// /// Enables the Elm logging service, which can be accessed via the . /// public static IApplicationBuilder UseElmCapture(this IApplicationBuilder app) { if (app == null) { throw new ArgumentNullException(nameof(app)); } // add the elm provider to the factory here so the logger can start capturing logs immediately var factory = app.ApplicationServices.GetRequiredService(); var store = app.ApplicationServices.GetRequiredService(); var options = app.ApplicationServices.GetService>(); factory.AddProvider(new ElmLoggerProvider(store, options?.Value ?? new ElmOptions())); return app.UseMiddleware(); } /// /// Enables viewing logs captured by the . /// public static IApplicationBuilder UseElmPage(this IApplicationBuilder app) { if (app == null) { throw new ArgumentNullException(nameof(app)); } return app.UseMiddleware(); } } }