Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 262 Bytes

InconsistentContextLogPropertyNaming.md

File metadata and controls

11 lines (9 loc) · 262 Bytes

Inconsistent log property naming in context (can be configured in the extension settings)

Noncompliant Code Examples:

LogContext.PushProperty("property_name", 1);

Compliant Solution:

LogContext.PushProperty("PropertyName", 1);