Skip to content

Commit

Permalink
fix(templates): improve exception logging in boilerplate project temp…
Browse files Browse the repository at this point in the history
…late #6451 (#6452)
  • Loading branch information
ysmoradi authored Dec 31, 2023
1 parent a3e2d26 commit f7546e8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ public virtual void Handle(Exception exception, IDictionary<string, object?>? pa
{
_ = Console.Error(exceptionMessage);
}
_ = System.Console.Out.WriteLineAsync(exceptionMessage);
else
{
_ = System.Console.Out.WriteLineAsync(exceptionMessage);
}
Debugger.Break();
}

Expand Down

0 comments on commit f7546e8

Please sign in to comment.