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));
 }
示例#2
0
文件: Munger.cs 项目: VicBoss/KR
 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));
 }