Skip to content

Commit

Permalink
maker print error
Browse files Browse the repository at this point in the history
  • Loading branch information
stojce committed Dec 9, 2017
1 parent 68acbec commit f937ada
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dotnet/Maker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ public Maker(EtherDeltaConfiguration config, ILogger logger = null) : base(confi
}
catch (Exception ex)
{
Console.WriteLine(ex);
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine(ex.Message);
Console.ResetColor();
}
}

Expand Down

0 comments on commit f937ada

Please sign in to comment.