diff options
| author | Roy Ben Shabat <roy.mail.net@gmail.com> | 2025-09-01 02:33:22 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <roy.mail.net@gmail.com> | 2025-09-01 02:33:22 +0300 |
| commit | 1d8115b0221779497d2cf33378b970b04a833d03 (patch) | |
| tree | d9e9dbf640aa3b9304534fafe0fbde4fb0c57592 /Software/Visual_Studio/PPC/Tango.PPC.UI | |
| parent | d9e07aff4a8160de7ce19ea536e69ed8f9a7a6d5 (diff) | |
| download | Tango-1d8115b0221779497d2cf33378b970b04a833d03.tar.gz Tango-1d8115b0221779497d2cf33378b970b04a833d03.zip | |
Fixed telemetry logs cyclic loop
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/App.config | 5 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/Telemetry/DefaultTelemetryProvider.cs | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/App.config b/Software/Visual_Studio/PPC/Tango.PPC.UI/App.config index 53a599bee..8539cda46 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/App.config +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/App.config @@ -135,6 +135,11 @@ <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" /> </dependentAssembly> + + <dependentAssembly> + <assemblyIdentity name="Microsoft.Extensions.Logging.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" /> + <bindingRedirect oldVersion="0.0.0.0-99.9.9.9" newVersion="1.1.1.0" /> + </dependentAssembly> </assemblyBinding> </runtime> diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Telemetry/DefaultTelemetryProvider.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Telemetry/DefaultTelemetryProvider.cs index 31646c709..6d72e618c 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Telemetry/DefaultTelemetryProvider.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Telemetry/DefaultTelemetryProvider.cs @@ -231,6 +231,7 @@ namespace Tango.PPC.UI.Telemetry public void Dispose() { TelemetryPublisher?.Dispose(); + TelemetryPublisher?.StorageManager.Dispose(); } } } |
