User: jonathon.rossi
Date: 2009/11/29 02:58 AM
Modified:
/DynamicProxy/trunk/src/Castle.DynamicProxy/
ProxyGenerator.cs
/DynamicProxy/trunk/src/Castle.DynamicProxy/Contributors/
MembersCollector.cs
Log:
- Castle Core doesn't have the TraceLogger in Silverlight so it will just use
the NullLogger.
- Fixed problem with logging skipped explicitly implemented interface methods
in Silverlight.
File Changes:
Directory: /DynamicProxy/trunk/src/Castle.DynamicProxy/
=======================================================
File [modified]: ProxyGenerator.cs
Delta lines: +0 -0
===================================================================
Directory: /DynamicProxy/trunk/src/Castle.DynamicProxy/Contributors/
====================================================================
File [modified]: MembersCollector.cs
Delta lines: +2 -0
===================================================================
--- DynamicProxy/trunk/src/Castle.DynamicProxy/ProxyGenerator.cs
2009-11-29 08:05:35 UTC (rev 6370)
+++ DynamicProxy/trunk/src/Castle.DynamicProxy/ProxyGenerator.cs
2009-11-29 09:58:23 UTC (rev 6371)
@@ -44,7 +44,9 @@
{
proxyBuilder = builder;
+#if !SILVERLIGHT
Logger = new TraceLogger("Castle.DynamicProxy",
LoggerLevel.Warn);
+#endif
}
--
You received this message because you are subscribed to the Google Groups
"Castle Project Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/castle-project-commits?hl=en.