3 writes to Message
aspire (2)
BackchannelJsonSerializerContext.BackchannelLogEntry.g.cs (2)
32
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] },
101
Setter = static (obj, value) => ((global::Aspire.Cli.Backchannel.BackchannelLogEntry)obj).
Message
= value!,
Aspire.Cli.Tests (1)
Commands\RunCommandTests.cs (1)
197
Message
= $"Test log entry {logEntryIndex++}",
4 references to Message
aspire (4)
BackchannelJsonSerializerContext.BackchannelLogEntry.g.cs (2)
100
Getter = static obj => ((global::Aspire.Cli.Backchannel.BackchannelLogEntry)obj).
Message
,
179
writer.WriteString(PropName_Message, ((global::Aspire.Cli.Backchannel.BackchannelLogEntry)value).
Message
);
Commands\RunCommand.cs (2)
440
extensionInteractionService.WriteDebugSessionMessage(entry.
Message
, entry.LogLevel is not LogLevel.Error and not LogLevel.Critical, "\x1b[2m");
444
await streamWriter.WriteLineAsync($"{entry.Timestamp:HH:mm:ss} [{entry.LogLevel}] {entry.CategoryName}: {entry.
Message
}");