From 7c7cfc0b7def54f8da0ee542be5e502e3013be28 Mon Sep 17 00:00:00 2001 From: Ashley Broughton Date: Sat, 3 Sep 2016 17:53:56 +0800 Subject: [PATCH] Changed exit statement to "Press enter to exit..." to match use of ReadLine() (#1425) --- src/NzbDrone.Console/ConsoleApp.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Console/ConsoleApp.cs b/src/NzbDrone.Console/ConsoleApp.cs index f13392149..6f935887f 100644 --- a/src/NzbDrone.Console/ConsoleApp.cs +++ b/src/NzbDrone.Console/ConsoleApp.cs @@ -24,7 +24,7 @@ public static void Main(string[] args) System.Console.WriteLine(""); System.Console.WriteLine(""); Logger.Fatal(exception.Message + ". This can happen if another instance of Sonarr is already running another application is using the same port (default: 8989) or the user has insufficient permissions"); - System.Console.WriteLine("Press any key to exit..."); + System.Console.WriteLine("Press enter to exit..."); System.Console.ReadLine(); Environment.Exit(1); } @@ -33,7 +33,7 @@ public static void Main(string[] args) System.Console.WriteLine(""); System.Console.WriteLine(""); Logger.Fatal(e, "EPIC FAIL!"); - System.Console.WriteLine("Press any key to exit..."); + System.Console.WriteLine("Press enter to exit..."); System.Console.ReadLine(); Environment.Exit(1); }