Skip to content

Commit bc2b940

Browse files
committed
Added stack trace printout when an exception is encountered in the DeployClient.
1 parent c761947 commit bc2b940

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

DeployClient/Program.cs

+2
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@ static void Main(string[] args)
145145
}
146146
catch (Exception ex)
147147
{
148+
// Output exception message and stack trace.
148149
WriteLine(ex.Message);
150+
WriteLine(ex.StackTrace);
149151
ReadLine();
150152
Environment.Exit((int)ExitCode.Error);
151153
}

0 commit comments

Comments
 (0)