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
Logger.LogInformation("Spans were not exported with status code: {StatusCode}. Checking to see if retryable again after: {DelayMilliseconds} ms",response.StatusCode,delayDuration.Milliseconds);
286
+
Logger.LogDebug("Spans were not exported with status code: {StatusCode}. Checking to see if retryable again after: {DelayMilliseconds} ms",response.StatusCode,delayDuration.Milliseconds);
279
287
280
288
// If delay exceeds deadline. We drop the http requesst completely.
Logger.LogInformation("Timeout will be reached after {Delay}ms delay. Dropping Spans with status code {StatusCode}.",delayDuration.Milliseconds,response.StatusCode);
291
+
Logger.LogDebug("Timeout will be reached after {Delay}ms delay. Dropping Spans with status code {StatusCode}.",delayDuration.Milliseconds,response.StatusCode);
Logger.LogInformation("{@ExceptionMessage}. Retrying again after {@Delay}ms",exceptionName,delayDuration.Milliseconds);
309
+
Logger.LogDebug("{@ExceptionMessage}. Retrying again after {@Delay}ms",exceptionName,delayDuration.Milliseconds);
302
310
303
311
awaitTask.Delay(delayDuration);
304
312
continue;
305
313
}
306
314
}
307
315
308
-
Logger.LogInformation("Timeout will be reached after {Delay}ms delay. Dropping spans with exception: {@ExceptionMessage}",delayDuration.Milliseconds,e);
316
+
Logger.LogDebug("Timeout will be reached after {Delay}ms delay. Dropping spans with exception: {@ExceptionMessage}",delayDuration.Milliseconds,e);
0 commit comments