From 86a30d4f311919f9ed5083473b908581d9e050c7 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Sat, 27 Aug 2016 18:20:39 -0400 Subject: [PATCH] changed "Logging in..." to "Logging in {username}" --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 57f14b6..dd84242 100644 --- a/Program.cs +++ b/Program.cs @@ -313,7 +313,7 @@ public static class Program var password = Console.ReadLine(); UserLogin login = new UserLogin(username, password); - Console.Write("Logging in... "); + Console.Write($"Logging in {username}... "); LoginResult loginResult = login.DoLogin(); Console.WriteLine(loginResult); if (!login.LoggedIn) return;