Skip to content
This repository has been archived by the owner on Mar 23, 2018. It is now read-only.

Commit

Permalink
fix: log error message of validation exception instead of full stack
Browse files Browse the repository at this point in the history
  • Loading branch information
cruikshj committed Apr 19, 2016
1 parent 01ddeeb commit d9b3141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nautilus/DeployCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ protected override int Run(OctopusProxy octopus)
catch (OctopusValidationException ex)
{
WriteLine("invalid", ConsoleColor.Red);
WriteLine(ex.ToString(), ConsoleColor.DarkGray, 1);
WriteLine(ex.ErrorMessage, ConsoleColor.DarkGray, 1);
}
}
}
Expand Down

0 comments on commit d9b3141

Please sign in to comment.