Outside Transition logic and annotations for unresolved transitions

This commit is contained in:
Jsj
2008-02-21 16:41:38 +00:00
parent f7c2a291d3
commit 4157c3b094
2 changed files with 41 additions and 22 deletions

View File

@@ -9,6 +9,7 @@ namespace DataLoader
{
public static class ErrorRpt
{
public static readonly log4net.ILog _MyLog = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
public static void ErrorReport(IVEHasBrokenRules mybr)
{
string smess = mybr.GetType().Name;
@@ -22,7 +23,8 @@ namespace DataLoader
smess += "\n" + br.Property + " - " + br.Description;
}
}
MessageBox.Show(smess);
//MessageBox.Show(smess);
_MyLog.Error(smess);
}
}
}