Commit f7feb6d

mo khan <mo@mokhan.ca>
2010-05-21 20:04:12
displaying error in console.
1 parent 7187153
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();
             }
         }
     }