3 writes to LogLevel
aspire (2)
BackchannelJsonSerializerContext.BackchannelLogEntry.g.cs (2)
30
ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Backchannel.BackchannelLogEntry(){ EventId = (global::Microsoft.Extensions.Logging.EventId)args[0],
LogLevel
= (global::Microsoft.Extensions.Logging.LogLevel)args[1], Message = (string)args[2], Timestamp = (global::System.DateTimeOffset)args[3], CategoryName = (string)args[4] },
76
Setter = static (obj, value) => ((global::Aspire.Cli.Backchannel.BackchannelLogEntry)obj).
LogLevel
= value!,
Aspire.Cli.Tests (1)
Commands\RunCommandTests.cs (1)
203
LogLevel
= LogLevel.Information,
3 references to LogLevel
aspire (3)
BackchannelJsonSerializerContext.BackchannelLogEntry.g.cs (2)
75
Getter = static obj => ((global::Aspire.Cli.Backchannel.BackchannelLogEntry)obj).
LogLevel
,
166
global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::Aspire.Cli.Backchannel.BackchannelLogEntry)value).
LogLevel
, LogLevel);
Commands\RunCommand.cs (1)
436
await streamWriter.WriteLineAsync($"{entry.Timestamp:HH:mm:ss} [{entry.
LogLevel
}] {entry.CategoryName}: {entry.Message}");