From 78524ae2d0c8e9da919849fcc105f594f4d85c8f Mon Sep 17 00:00:00 2001 From: Sewmina Date: Mon, 13 Jan 2025 11:24:20 +0530 Subject: [PATCH] reboot complete message --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 5c1926a..e491344 100644 --- a/Program.cs +++ b/Program.cs @@ -32,7 +32,7 @@ class Program commasList += coin.pair + ", "; } } - string msg = $"{failedList.Count} Failed out of {watches.Count}. Failed list: \n{commasList}"; + string msg = $"Reboot complete: {failedList.Count} Failed out of {watches.Count}. Failed list: \n{commasList}"; Console.WriteLine(msg); Messenger.instance.ScheduleMessage(msg); }