You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// this should never happen, but if it does, we want to log it for further investigation
407
+
Log.Error("Evaluation state error: we thought that evaluation result is null but that not true. probably we are using an incorrect version of ProbeExpressionEvaluator");
408
+
409
+
try
396
410
{
397
411
if(Log.IsEnabled(LogEventLevel.Debug))
398
412
{
399
-
Log.Debug("No active scope available, skipping span decoration. Probe: {ProbeId}",ProbeInfo.ProbeId);
Log.Error("Evaluation state error: Target Method: Type = {Type}, Name = {Name}. Method Members: {Members}",instance.Type?.FullName??instance.Type?.Name,instance.Name,membersAsString);
Log.Error("We can't set the {Tag} tag. Probe ID: {ProbeId}, because target span {Span} is invalid",decoration.TagName,ProbeInfo.ProbeId,ProbeInfo.TargetSpan);
424
462
break;
425
463
}
426
464
427
465
if(targetSpan==null)
428
466
{
429
-
Log.Warning("No root span or active span is available, so we can't set the {Tag} tag. Probe ID: {ProbeId}",decoration.TagName,ProbeInfo.ProbeId);
467
+
Log.Warning("We can't set the {Tag} tag. Probe ID: {ProbeId}, because the chosen span {Span} is not available",decoration.TagName,ProbeInfo.ProbeId,ProbeInfo.TargetSpan);
0 commit comments