// 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 Microsoft.Extensions.Logging; namespace Microsoft.AspNetCore.Diagnostics.Elm { /// /// Options for viewing elm logs. /// public class ViewOptions { /// /// The minimum of logs shown on the elm page. /// public LogLevel MinLevel { get; set; } /// /// The prefix for the logger names of logs shown on the elm page. /// public string NamePrefix { get; set; } } }