File tree 1 file changed +3
-3
lines changed
Framework/PostSharp.Samples.CustomLogging
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ When you apply the `[LogMethod]` aspect to a method, the method creates a log re
12
12
* the method returns successfully,
13
13
* the method fails with an exception.
14
14
15
- Additionally, you can apply the ' [ LogSetValue] ` to a field or property to create a log record when the field or property is set.
15
+ Additionally, you can apply the ` [LogSetValue] ` to a field or property to create a log record when the field or property is set.
16
16
17
17
## What is being demonstrated?
18
18
@@ -33,9 +33,9 @@ This example is purely educational. It has the following limitations:
33
33
* Subject to infinite loops if you add logging to the ` ToString ` method.
34
34
35
35
If you need production-grade logging, you should consider using the
36
- ` PostSharp.Patterns.Diagnostics.LogAttribute ` aspect .
36
+ ` [Log] ` aspect from the ` [ PostSharp.Patterns.Diagnostics] ` namespace .
37
37
38
- The ` LogAttribute ` aspect works out of the box. The ` LogAttribute ` aspect is highly optimized for run-time performance, multithreading and reentrance.
38
+ The ` [Log] ` aspect works out of the box. It is highly optimized for run-time performance, multithreading and reentrance.
39
39
You can set up logging in a few minutes without modifying your existing source code.
40
40
41
41
You can’t perform that action at this time.
0 commit comments