Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Remove http logging #3670

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Reverted tabs to spaces
steven-hack committed May 5, 2017
commit 6d20230488896c131158d362d09752a631ff5c43
72 changes: 36 additions & 36 deletions source/Core/Configuration/LoggingOptions.cs
Original file line number Diff line number Diff line change
@@ -16,43 +16,43 @@

namespace IdentityServer3.Core.Configuration
{
/// <summary>
/// Configures logging within IdentityServer.
/// </summary>
public class LoggingOptions
{
/// <summary>
/// Initializes a new instance of the <see cref="LoggingOptions"/> class.
/// </summary>
public LoggingOptions()
{
EnableWebApiDiagnostics = false;
WebApiDiagnosticsIsVerbose = false;
EnableKatanaLogging = false;
}
/// <summary>
/// Configures logging within IdentityServer.
/// </summary>
public class LoggingOptions
{
/// <summary>
/// Initializes a new instance of the <see cref="LoggingOptions"/> class.
/// </summary>
public LoggingOptions()
{
EnableWebApiDiagnostics = false;
WebApiDiagnosticsIsVerbose = false;
EnableKatanaLogging = false;
}

/// <summary>
/// Gets or sets a value indicating whether web API diagnostics should be enabled.
/// </summary>
/// <value>
/// <c>true</c> if web API diagnostics should be enabled; otherwise, <c>false</c>.
/// </value>
public bool EnableWebApiDiagnostics { get; set; }
/// <summary>
/// Gets or sets a value indicating whether web API diagnostics should be enabled.
/// </summary>
/// <value>
/// <c>true</c> if web API diagnostics should be enabled; otherwise, <c>false</c>.
/// </value>
public bool EnableWebApiDiagnostics { get; set; }

/// <summary>
/// Gets or sets a value indicating whether web API diagnostics logging should be set to verbose.
/// </summary>
/// <value>
/// <c>true</c> if web API diagnostics logging should be verbose; otherwise, <c>false</c>.
/// </value>
public bool WebApiDiagnosticsIsVerbose { get; set; }
/// <summary>
/// Gets or sets a value indicating whether web API diagnostics logging should be set to verbose.
/// </summary>
/// <value>
/// <c>true</c> if web API diagnostics logging should be verbose; otherwise, <c>false</c>.
/// </value>
public bool WebApiDiagnosticsIsVerbose { get; set; }

/// <summary>
/// Gets or sets a value indicating whether Katana logging should be forwarded to the standard logging output.
/// </summary>
/// <value>
/// <c>true</c> if Katana log forwarding is enabled; otherwise, <c>false</c>.
/// </value>
public bool EnableKatanaLogging { get; set; }
}
/// <summary>
/// Gets or sets a value indicating whether Katana logging should be forwarded to the standard logging output.
/// </summary>
/// <value>
/// <c>true</c> if Katana log forwarding is enabled; otherwise, <c>false</c>.
/// </value>
public bool EnableKatanaLogging { get; set; }
}
}