I'm trying to implement logging with PostSharp and multicastAttribute. Using the Logging aspect that comes in PostSharp Diagnostics library.
I have a GlboalAspects.cs in the start up project directory. The content is as follows.
`[assembly: PostSharp.Patterns.Diagnostics.LogAttribute(AttributeTargetTypes = "alp_generator.*", AttributeTargetMemberAttributes = PostSharp.Extensibility.MulticastAttributes.NonAbstract )]`
right clickeing my projects and selecting properties, the default namepsace is "alp_generator"
I don't know that "PostSharp.Patterns.Diagnostics.LogAttribute" is correct.
I get no logging at all. If I apply the [Log] Attribute to any method, it logs as expected.
I'd appreciate any ideas in getting this working. Thanks in advance.
BTW, I've gone through PostSharp documentation, and I didn't see anything that helped me get this working.