mirror of https://github.com/Squidex/squidex.git
committed by
GitHub
11 changed files with 121 additions and 27 deletions
@ -0,0 +1,14 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
namespace Squidex.Infrastructure.Log |
|||
{ |
|||
public sealed class SemanticLogOptions |
|||
{ |
|||
public SemanticLogLevel Level { get; set; } = SemanticLogLevel.Information; |
|||
} |
|||
} |
|||
@ -0,0 +1,16 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
namespace Squidex.Web.Pipeline |
|||
{ |
|||
public sealed class RequestLogOptions |
|||
{ |
|||
public bool LogRequest { get; set; } |
|||
|
|||
public bool LogProfiler { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue