diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2025-08-21 14:36:42 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2025-08-21 14:36:42 +0300 |
| commit | 33c5e689caa9842aa29dac915b4f8d83564cee0c (patch) | |
| tree | e8a96988ce0cb66797fae688c5e753359da41f03 /Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSourceConfig.cs | |
| parent | 9c64ff964e98c5a27bb63cecf3042499b6b50736 (diff) | |
| download | Tango-33c5e689caa9842aa29dac915b4f8d83564cee0c.tar.gz Tango-33c5e689caa9842aa29dac915b4f8d83564cee0c.zip | |
Telemetry JobStatus
Diffstat (limited to 'Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSourceConfig.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSourceConfig.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSourceConfig.cs b/Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSourceConfig.cs index 1de30976a..440843003 100644 --- a/Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSourceConfig.cs +++ b/Software/Visual_Studio/Tango.Telemetry/Sources/TelemetryLogsStreamingSourceConfig.cs @@ -10,11 +10,11 @@ namespace Tango.Telemetry.Sources { public class TelemetryLogsStreamingSourceConfig : SettingsBase { - public List<LogCategory> Categories { get; set; } + public HashSet<LogCategory> Categories { get; set; } public TelemetryLogsStreamingSourceConfig() { - Categories = new List<LogCategory>() { LogCategory.Error, LogCategory.Critical, LogCategory.Warning }; + Categories = new HashSet<LogCategory>() { LogCategory.Error, LogCategory.Critical, LogCategory.Warning }; } } } |
