Beispiel #1
0
 private void ReportPutValueException(MungerException ex)
 {
     //TODO: How should we report this error?
     System.Diagnostics.Debug.WriteLine("PutValue failed");
     System.Diagnostics.Debug.WriteLine(String.Format("- Culprit aspect: {0}", ex.Munger.AspectName));
     System.Diagnostics.Debug.WriteLine(String.Format("- Target: {0} of type {1}", ex.Target, ex.Target.GetType()));
     System.Diagnostics.Debug.WriteLine(String.Format("- Inner exception: {0}", ex.InnerException));
 }
Beispiel #2
0
		private void ReportPutValueException(MungerException ex) {
			//TODO: How should we report this error?
			System.Diagnostics.Debug.WriteLine("PutValue failed");
			System.Diagnostics.Debug.WriteLine(String.Format("- Culprit aspect: {0}", ex.Munger.AspectName));
			System.Diagnostics.Debug.WriteLine(String.Format("- Target: {0} of type {1}", ex.Target, ex.Target.GetType()));
			System.Diagnostics.Debug.WriteLine(String.Format("- Inner exception: {0}", ex.InnerException));
		}