1 write to _logLevel
Aspire.Dashboard (1)
Model\StructuredLogsViewModel.cs (1)
64
public LogLevel? LogLevel { get => _logLevel; set => SetValue(ref
_logLevel
, value); }
4 references to _logLevel
Aspire.Dashboard (4)
Model\StructuredLogsViewModel.cs (4)
64
public LogLevel? LogLevel { get =>
_logLevel
; set => SetValue(ref _logLevel, value); }
88
if (
_logLevel
!= null &&
_logLevel
!= Microsoft.Extensions.Logging.LogLevel.Trace)
90
filters.Add(new TelemetryFilter { Field = nameof(OtlpLogEntry.Severity), Condition = FilterCondition.GreaterThanOrEqual, Value =
_logLevel
.Value.ToString() });