File: Model\TestTelemetryErrorRecorder.cs | Web Access |
Project: src\tests\Aspire.Dashboard.Tests\Aspire.Dashboard.Tests.csproj (Aspire.Dashboard.Tests) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Aspire.Dashboard.Telemetry; namespace Aspire.Dashboard.Tests.Model; public sealed class TestTelemetryErrorRecorder : ITelemetryErrorRecorder { public void RecordError(string message, Exception exception, bool writeToLogging = false) { } } |