Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 248 Bytes

TemplateDuplicatePropertyProblem.md

File metadata and controls

11 lines (9 loc) · 248 Bytes

Duplicate template property

Noncompliant Code Example:

Log.Error("Disk quota {Quota} MB exceeded by {Quota}", quota, user);

Compliant Solution:

Log.Error("Disk quota {Quota} MB exceeded by {User}", quota, user);