File tree 1 file changed +20
-0
lines changed
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,26 @@ public bool IncludeNdlc
126
126
}
127
127
#endif
128
128
129
+ /// <summary>
130
+ /// Gets or sets a value indicating whether to include call site (class and method name) in the information sent over the network.
131
+ /// </summary>
132
+ /// <docgen category='Payload Options' order='10' />
133
+ public bool IncludeCallSite
134
+ {
135
+ get => Renderer . IncludeCallSite ;
136
+ set => Renderer . IncludeCallSite = value ;
137
+ }
138
+
139
+ /// <summary>
140
+ /// Gets or sets a value indicating whether to include source info (file name and line number) in the information sent over the network.
141
+ /// </summary>
142
+ /// <docgen category='Payload Options' order='10' />
143
+ public bool IncludeSourceInfo
144
+ {
145
+ get => Renderer . IncludeSourceInfo ;
146
+ set => Renderer . IncludeSourceInfo = value ;
147
+ }
148
+
129
149
internal override void PrecalculateBuilder ( LogEventInfo logEvent , StringBuilder target )
130
150
{
131
151
PrecalculateBuilderInternal ( logEvent , target ) ;
You can’t perform that action at this time.
0 commit comments