Skip to content

Commit

Permalink
Fix log line when failing to start services (#28519)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeYankovich authored Sep 17, 2024
1 parent f0c0ff4 commit b0ba63c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ private ActionResult StartDDServices()
}
catch (Exception e)
{
_session.Log($"Failed to stop services: {e}");
_session.Log($"Failed to start services: {e}");
// Allow service start to fail and continue the install
}
return ActionResult.Success;
Expand Down

0 comments on commit b0ba63c

Please sign in to comment.