Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Models/CoreDebugSettings.cs

22 lines
667 B
C#
Raw Normal View History

// Copyright (c) Umbraco.
// See LICENSE for more details.
namespace Umbraco.Cms.Core.Configuration.Models
2020-03-16 14:02:08 +01:00
{
/// <summary>
/// Typed configuration options for core debug settings.
/// </summary>
public class CoreDebugSettings
2020-03-16 14:02:08 +01:00
{
/// <summary>
/// Gets or sets a value indicating whether incompleted scopes should be logged.
/// </summary>
public bool LogIncompletedScopes { get; set; } = false;
2020-03-18 11:29:29 +01:00
/// <summary>
/// Gets or sets a value indicating whether memory dumps on thread abort should be taken.
/// </summary>
public bool DumpOnTimeoutThreadAbort { get; set; } = false;
2020-03-16 14:02:08 +01:00
}
}