Skip to content

Commit

Permalink
Merge branch 'hotfix/0.10.3'
Browse files Browse the repository at this point in the history
* hotfix/0.10.3:
  fix incorrect exception logging
  • Loading branch information
gep13 committed Jan 25, 2020
2 parents ef5383e + 6fdf736 commit ed19cd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/GitReleaseManager.Cli/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private static async Task<int> Main(string[] args)
Log.Fatal("{Message}", ex.Message);
foreach (var innerException in ex.InnerExceptions)
{
Log.Fatal(ex, "{Message}", ex.Message);
Log.Fatal(innerException, "{Message}", innerException.Message);
}

return 1;
Expand Down

0 comments on commit ed19cd0

Please sign in to comment.