From 55dc9cbfc7fa2e9a636fbf814fe17b3ec8b37984 Mon Sep 17 00:00:00 2001 From: kspearrin Date: Thu, 20 Sep 2018 09:29:48 -0400 Subject: [PATCH] log debug --- src/iOS.Autofill/CredentialProviderViewController.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/iOS.Autofill/CredentialProviderViewController.cs b/src/iOS.Autofill/CredentialProviderViewController.cs index 4c39e930e..431ca03ba 100644 --- a/src/iOS.Autofill/CredentialProviderViewController.cs +++ b/src/iOS.Autofill/CredentialProviderViewController.cs @@ -12,12 +12,14 @@ namespace Bit.iOS.Autofill } public override void ViewDidLoad() - { + { + System.Diagnostics.Debug.WriteLine("AUTOFILL view did load"); base.ViewDidLoad(); } public override void PrepareCredentialList(ASCredentialServiceIdentifier[] serviceIdentifiers) { + System.Diagnostics.Debug.WriteLine("AUTOFILL Got identifiers " + serviceIdentifiers.Length); base.PrepareCredentialList(serviceIdentifiers); }