Skip to content

Commit

Permalink
Msg Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
prashelke committed Apr 11, 2024
1 parent ef4c1e3 commit e2e592f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ private void TrackVRT()
if (vrt == null || !vrt.IsStarted)
{
mAct.Error = "VRT is not Started";
mAct.ExInfo = "You require to add VRT Start Action one step before.";
mAct.ExInfo = "Please include a VRT Start Action one step before the current one, if it has not been done already, and ensure that it runs before the current action.";
return;
}
try
Expand Down Expand Up @@ -403,7 +403,7 @@ private void StopVRT()
if (vrt == null || !vrt.IsStarted)
{
mAct.Error = "VRT is not Started";
mAct.ExInfo = "You require to add VRT Start Action one step before.";
mAct.ExInfo = "Please include a VRT Start Action one step before the current one, if it has not been done already, and ensure that it runs before the current action..";
return;
}
if (vrt.IsStarted)
Expand Down

0 comments on commit e2e592f

Please sign in to comment.