aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Telemetry/Sources
diff options
context:
space:
mode:
authorRoy Ben Shabat <roy.mail.net@gmail.com>2025-09-01 02:33:22 +0300
committerRoy Ben Shabat <roy.mail.net@gmail.com>2025-09-01 02:33:22 +0300
commit1d8115b0221779497d2cf33378b970b04a833d03 (patch)
treed9e9dbf640aa3b9304534fafe0fbde4fb0c57592 /Software/Visual_Studio/Tango.Telemetry/Sources
parentd9e07aff4a8160de7ce19ea536e69ed8f9a7a6d5 (diff)
downloadTango-1d8115b0221779497d2cf33378b970b04a833d03.tar.gz
Tango-1d8115b0221779497d2cf33378b970b04a833d03.zip
Fixed telemetry logs cyclic loop
Diffstat (limited to 'Software/Visual_Studio/Tango.Telemetry/Sources')
-rw-r--r--Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSource.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSource.cs b/Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSource.cs
index 2c8020f7c..2f592f22a 100644
--- a/Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSource.cs
+++ b/Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSource.cs
@@ -64,6 +64,8 @@ namespace Tango.Telemetry.Sources
if (IsStarted)
{
if (!Config.Categories.Contains(log.Category)) return;
+ if (log.ClassName != null && log.ClassName.StartsWith("Telemetry")) return;
+
TelemetryLog tLog = LogMapper.MapLog(log);
TelemetryAvailable?.Invoke(this, new TelemetryAvailableEventArgs() { TelemetryObject = tLog });