1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-12-28 17:18:23 +01:00

debug write line migration

This commit is contained in:
Kyle Spearrin 2019-06-03 13:05:04 -04:00
parent 57c89f5b2a
commit 59b086168a

View File

@ -17,6 +17,7 @@ namespace Bit.App.Migration
var needsMigration = ServiceContainer.Resolve<SettingsShim>("settingsShim")
.GetValueOrDefault(Constants.OldUserIdKey, null) != null;
ServiceContainer.Resolve<ILogService>("logService").Info("Needs Migration: " + needsMigration);
System.Diagnostics.Debug.WriteLine("Needs Migration: " + needsMigration);
return needsMigration;
}