From 9b69e6f234bb6f700bf5928e9a708e12f92286f5 Mon Sep 17 00:00:00 2001 From: Brennan Date: Tue, 24 Feb 2015 10:31:35 -0800 Subject: [PATCH] LogFormatter API change --- src/Microsoft.AspNet.Mvc.Core/Logging/ActionConstraintValues.cs | 2 +- src/Microsoft.AspNet.Mvc.Core/Logging/ActionDescriptorValues.cs | 2 +- src/Microsoft.AspNet.Mvc.Core/Logging/ActionModelValues.cs | 2 +- src/Microsoft.AspNet.Mvc.Core/Logging/ApiExplorerModelValues.cs | 2 +- src/Microsoft.AspNet.Mvc.Core/Logging/AssemblyValues.cs | 2 +- .../Logging/AttributeRouteInfoValues.cs | 2 +- .../Logging/AttributeRouteModelValues.cs | 2 +- src/Microsoft.AspNet.Mvc.Core/Logging/ControllerModelValues.cs | 2 +- src/Microsoft.AspNet.Mvc.Core/Logging/FilterDescriptorValues.cs | 2 +- src/Microsoft.AspNet.Mvc.Core/Logging/FilterValues.cs | 2 +- .../Logging/ParameterDescriptorValues.cs | 2 +- src/Microsoft.AspNet.Mvc.Core/Logging/ParameterModelValues.cs | 2 +- .../Logging/RouteConstraintProviderValues.cs | 2 +- .../Logging/RouteDataActionConstraintValues.cs | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/ActionConstraintValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/ActionConstraintValues.cs index 11f9bf9430..9d514ee6d6 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/ActionConstraintValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/ActionConstraintValues.cs @@ -50,7 +50,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/ActionDescriptorValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/ActionDescriptorValues.cs index 66461b82a1..f6323a805b 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/ActionDescriptorValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/ActionDescriptorValues.cs @@ -113,7 +113,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/ActionModelValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/ActionModelValues.cs index 48624e37f0..74949e39f2 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/ActionModelValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/ActionModelValues.cs @@ -94,7 +94,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/ApiExplorerModelValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/ApiExplorerModelValues.cs index 8cf64ae7a1..87616de47f 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/ApiExplorerModelValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/ApiExplorerModelValues.cs @@ -32,7 +32,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/AssemblyValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/AssemblyValues.cs index a3cb8785ba..a0007ff4b4 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/AssemblyValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/AssemblyValues.cs @@ -40,7 +40,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/AttributeRouteInfoValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/AttributeRouteInfoValues.cs index ae983214ff..669e0e3958 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/AttributeRouteInfoValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/AttributeRouteInfoValues.cs @@ -36,7 +36,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/AttributeRouteModelValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/AttributeRouteModelValues.cs index ba9b0e42d9..c1af4ddb1a 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/AttributeRouteModelValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/AttributeRouteModelValues.cs @@ -45,7 +45,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/ControllerModelValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/ControllerModelValues.cs index 3b97532a49..5e5fe749e1 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/ControllerModelValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/ControllerModelValues.cs @@ -91,7 +91,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/FilterDescriptorValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/FilterDescriptorValues.cs index 1742e80fdb..f5c5a7bcdd 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/FilterDescriptorValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/FilterDescriptorValues.cs @@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/FilterValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/FilterValues.cs index 669dce246e..0f8fbc83c1 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/FilterValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/FilterValues.cs @@ -63,7 +63,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/ParameterDescriptorValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/ParameterDescriptorValues.cs index ee0da24f25..6357773abe 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/ParameterDescriptorValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/ParameterDescriptorValues.cs @@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/ParameterModelValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/ParameterModelValues.cs index ebef2be8c3..c6ccd37d52 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/ParameterModelValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/ParameterModelValues.cs @@ -39,7 +39,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/RouteConstraintProviderValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/RouteConstraintProviderValues.cs index 80e7aef050..861d3906a6 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/RouteConstraintProviderValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/RouteConstraintProviderValues.cs @@ -42,7 +42,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } diff --git a/src/Microsoft.AspNet.Mvc.Core/Logging/RouteDataActionConstraintValues.cs b/src/Microsoft.AspNet.Mvc.Core/Logging/RouteDataActionConstraintValues.cs index a4cd69e9e3..ca51a5734a 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Logging/RouteDataActionConstraintValues.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Logging/RouteDataActionConstraintValues.cs @@ -36,7 +36,7 @@ namespace Microsoft.AspNet.Mvc.Logging public override string Format() { - return LogFormatter.FormatStructure(this); + return LogFormatter.FormatLogValues(this); } } } \ No newline at end of file