Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1146 from dotnet/dev/ps/emitPid
Browse files Browse the repository at this point in the history
Log the Pid after Tye application is started
  • Loading branch information
pratiksanglikar authored Aug 12, 2021
2 parents 5db8a30 + 562bad1 commit ea68ac0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Microsoft.Tye.Hosting/TyeHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ public async Task<IHost> StartAsync()
try
{
await _processor.StartAsync(_application);
_logger.LogInformation($"Application {_application.Name} started successfully with Pid: {Process.GetCurrentProcess().Id}");
}
catch (TyeBuildException ex)
{
Expand Down

0 comments on commit ea68ac0

Please sign in to comment.