public static ExtentionPropertyDto GetExtentionProperty(LogProperty property) { if (property == null) { return(null); } return(new ExtentionPropertyDto() { Name = property.Name, Value = property.Value, Type = property.DataType }); }
public void Info(LogProperty property, string format, params object[] args) { Log(LogLevel.Info, format, args, new[] { property }); }