LogFormatter API change
This commit is contained in:
parent
dc49a2c194
commit
9b69e6f234
|
|
@ -50,7 +50,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -113,7 +113,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -94,7 +94,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -32,7 +32,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -40,7 +40,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -36,7 +36,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -45,7 +45,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -91,7 +91,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -63,7 +63,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -39,7 +39,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -42,7 +42,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ namespace Microsoft.AspNet.Mvc.Logging
|
||||||
|
|
||||||
public override string Format()
|
public override string Format()
|
||||||
{
|
{
|
||||||
return LogFormatter.FormatStructure(this);
|
return LogFormatter.FormatLogValues(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue