We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
No need to perform the reflection-dance for every LogEvent (Introduced with #94):
stackify-api-dotnet/Src/StackifyLib/Internal/Logs/LogQueue.cs
Lines 201 to 204 in ac13f57
Should cache the lookup of callContextType.GetProperty("TraceContext") and traceCtxType.GetProperty("RequestId").
callContextType.GetProperty("TraceContext")
traceCtxType.GetProperty("RequestId")
var traceContextProp = _callCtxTraceContextPropInfo.GetValue(null); if (traceContextProp != null) { var reqIdProp = _traceCtxRequestIdPropInfo.GetValue(traceContextProp)?.ToString(); }
No need to perform the reflection-dance for every LogEvent (Introduced with #94):
stackify-api-dotnet/Src/StackifyLib/Internal/Logs/LogQueue.cs
Lines 201 to 204 in ac13f57
Should cache the lookup of
callContextType.GetProperty("TraceContext")andtraceCtxType.GetProperty("RequestId").