diff --git a/src/App/Migration/MigrationHelpers.cs b/src/App/Migration/MigrationHelpers.cs index 7a8eebca2..f2653a40a 100644 --- a/src/App/Migration/MigrationHelpers.cs +++ b/src/App/Migration/MigrationHelpers.cs @@ -17,6 +17,7 @@ namespace Bit.App.Migration var needsMigration = ServiceContainer.Resolve("settingsShim") .GetValueOrDefault(Constants.OldUserIdKey, null) != null; ServiceContainer.Resolve("logService").Info("Needs Migration: " + needsMigration); + System.Diagnostics.Debug.WriteLine("Needs Migration: " + needsMigration); return needsMigration; }