From 59b086168ab6ff50f5f6de1212cc3601277c8d0e Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 3 Jun 2019 13:05:04 -0400 Subject: [PATCH] debug write line migration --- src/App/Migration/MigrationHelpers.cs | 1 + 1 file changed, 1 insertion(+) 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; }