Commit f7feb6d
Changed files (1)
product
presentation.windows.server
product/presentation.windows.server/Program.cs
@@ -1,5 +1,4 @@
using System;
-using System.Diagnostics;
using Gorilla.Commons.Infrastructure.Container;
using Gorilla.Commons.Infrastructure.Logging;
using MoMoney.Service.Infrastructure.Threading;
@@ -34,8 +33,8 @@ namespace presentation.windows.server
catch (Exception e)
{
e.add_to_log();
- if(Debugger.IsAttached) Debugger.Break();
- //Console.ReadLine();
+ Console.Out.WriteLine(e);
+ Console.ReadLine();
}
}
}