Skip to content

Commit

Permalink
fix(Console): throw the original exception
Browse files Browse the repository at this point in the history
  • Loading branch information
MingboPeng committed Oct 27, 2023
1 parent 0584655 commit fc2938c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ironbug.Console/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static void Main(string[] args)
catch (Exception e)
{
Console.WriteLine(e);
throw e;
throw;
//Console.ReadLine();
}

Expand Down

0 comments on commit fc2938c

Please sign in to comment.