// Copyright (c) Umbraco. // See LICENSE for more details. namespace Umbraco.Core.Configuration.Models { /// /// Typed configuration options for core debug settings. /// public class CoreDebugSettings { /// /// Gets or sets a value indicating whether incompleted scopes should be logged. /// public bool LogIncompletedScopes { get; set; } = false; /// /// Gets or sets a value indicating whether memory dumps on thread abort should be taken. /// public bool DumpOnTimeoutThreadAbort { get; set; } = false; } }