Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 247 Bytes

InconsistentLogPropertyNaming.md

File metadata and controls

11 lines (9 loc) · 247 Bytes

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

Noncompliant Code Examples:

Log.Error("Processed {property_name}", 1);

Compliant Solution:

Log.Error("Processed {PropertyName}", 1);