Traced exception message out on DynamicNode

This commit is contained in:
agrath
2011-08-11 15:36:54 -12:00
parent fc770dd50f
commit f361e20482

View File

@@ -10,6 +10,7 @@ using System.Reflection.Emit;
using System.Threading;
using System.Dynamic;
using umbraco.MacroEngines;
using System.Diagnostics;
namespace System.Linq.Dynamic
{
@@ -73,8 +74,9 @@ namespace System.Linq.Dynamic
}
return false;
}
catch (Exception)
catch (Exception ex)
{
Trace.WriteLine(ex.Message);
return false;
}
}).AsQueryable();