3 writes to CategoryName
aspire (2)
BackchannelJsonSerializerContext.BackchannelLogEntry.g.cs (2)
30ObjectWithParameterizedConstructorCreator = 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] }, 136Setter = static (obj, value) => ((global::Aspire.Cli.Backchannel.BackchannelLogEntry)obj).CategoryName = value!,
Aspire.Cli.Tests (1)
Commands\RunCommandTests.cs (1)
206CategoryName = "TestCategory"
3 references to CategoryName
aspire (3)
BackchannelJsonSerializerContext.BackchannelLogEntry.g.cs (2)
135Getter = static obj => ((global::Aspire.Cli.Backchannel.BackchannelLogEntry)obj).CategoryName, 169writer.WriteString(PropName_CategoryName, ((global::Aspire.Cli.Backchannel.BackchannelLogEntry)value).CategoryName);
Commands\RunCommand.cs (1)
436await streamWriter.WriteLineAsync($"{entry.Timestamp:HH:mm:ss} [{entry.LogLevel}] {entry.CategoryName}: {entry.Message}");