Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Aspire.Cli/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -668,6 +668,9 @@ public static async Task<int> Main(string[] args)
logger.LogInformation("Version: {Version}", AspireCliTelemetry.GetCliVersion());
logger.LogInformation("Build ID: {BuildId}", AspireCliTelemetry.GetCliBuildId());
logger.LogInformation("Working directory: {WorkingDirectory}", Environment.CurrentDirectory);
// Logging the log file path is useful so that when console logging is enabled (for example with --log-level debug),
// the path is written to the console logger (stderr) for easier discovery.
logger.LogInformation("Log file: {LogFilePath}", loggingOptions.LogFilePath);

IHost? app = null;
try
Expand Down
Loading