File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
auth/amplify_auth_cognito_dart/lib/src Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,9 @@ abstract class AmplifyClass {
180180
181181 /// Configures all plugins in topologically-sorted order.
182182 Future <void > _configurePlugins (AmplifyOutputs config) async {
183+ safePrint (
184+ '⚙️ [Amplify Core] Configuring plugins with AuthOutputs.userPoolEndpoint: ${config .auth ?.userPoolEndpoint }' ,
185+ );
183186 await Future .wait (_addPluginFutures);
184187 _addPluginFutures.clear ();
185188 final categories = < Category , AmplifyCategory > {
Original file line number Diff line number Diff line change @@ -515,6 +515,10 @@ class AmplifyAuthCognitoDart extends AuthPluginInterface
515515 String ? password,
516516 SignInOptions ? options,
517517 }) async {
518+ safePrint (
519+ '🔐 [Auth Plugin] signIn called with username: $username (password provided: ${password != null })' ,
520+ );
521+
518522 final pluginOptions = reifyPluginOptions (
519523 pluginOptions: options? .pluginOptions,
520524 defaultPluginOptions: const CognitoSignInPluginOptions (),
You can’t perform that action at this time.
0 commit comments