I'm looking for a tool that would allow me to log method parameters ( basically something like PostSharp ) and return values at runtime. The tricky part is that I would like to do this for a Ironpython exposed C# class. I tried using
and
Both without success.
I also used PostSharp and it works with it. But I'd rather use an open source library. I assume I can't get KingAOP working for this because it is dynamic based and iron python does some magic that overrides the default dynamic object behavior.
So has anyone done any parameter/return value logging using a AOP wrapper with IronPython