From 50e2db716d9823f71b14d3c9c55b9cf061dc22a3 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Wed, 7 May 2025 14:12:54 -0700 Subject: [PATCH] re-add error log for installation id --- util/Setup/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/Setup/Program.cs b/util/Setup/Program.cs index 5cefd1ab8e..9f07895838 100644 --- a/util/Setup/Program.cs +++ b/util/Setup/Program.cs @@ -312,6 +312,9 @@ public class Program } catch { + Console.WriteLine( + $"Unable to validate installation id. Problem contacting Bitwarden {cloudRegion.ToString()} server.\nError: {ex.Message}" + ); return false; } }