/// <inheritdoc/>
 public void Warn(Type reporting, Exception exception, string message, params object[] propertyValues)
 {
     System.Diagnostics.Debug.WriteLine(MessageTemplates.Render(message + Environment.NewLine + exception, propertyValues), reporting.FullName);
 }
 /// <inheritdoc/>
 public void Warn(Type reporting, string message, params object[] propertyValues)
 {
     System.Diagnostics.Debug.WriteLine(MessageTemplates.Render(message, propertyValues), reporting.FullName);
 }