Exemple #1
0
 /// <inheritdoc cref="ILogging.Error(Exception, object[])"/>
 public void Error(Exception e, params object?[] propertyValues)
 {
     Error(e.Message + ILoggingHelper.GetPropertyDetails(propertyValues), propertyValues);
 }
 protected override string GetExceptionMessage(Exception e, object?[] props)
 {
     return(e.Message + string.Format(ILoggingHelper.GetPropertyDetails(props) ?? string.Empty, props));
 }