Flatter Firebase身份验证登录日志在用户未登录的情况下关闭

Flatter Firebase身份验证登录日志在用户未登录的情况下关闭,firebase,firebase-authentication,flutter,Firebase,Firebase Authentication,Flutter,正如标题所说,当我的应用程序运行时,我会看到奇怪的日志。 我得到的第一个是 W/BiChannelGoogleApi( 3072): [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@36d7eba W/DynamiteModule( 3072): Local module descriptor class for com.google.firebas

正如标题所说,当我的应用程序运行时,我会看到奇怪的日志。 我得到的第一个是

W/BiChannelGoogleApi( 3072): [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@36d7eba
W/DynamiteModule( 3072): Local module descriptor class for com.google.firebase.auth not found.
I/FirebaseAuth( 3072): [FirebaseAuth:] Loading module via FirebaseOptions.
I/FirebaseAuth( 3072): [FirebaseAuth:] Preparing to create service connection to gms implementation
D/FirebaseAuth( 3072): Notifying id token listeners about user ( *useridhere* ).
D/FirebaseApp( 3072): Notifying auth state listeners.
D/FirebaseApp( 3072): Notified 1 auth state listeners.
然后过了一会儿我就明白了

I/FirebaseAuth( 3072): [FirebaseAuth:] Loading module via FirebaseOptions.
I/FirebaseAuth( 3072): [FirebaseAuth:] Preparing to create service connection to gms implementation
这是我所期望的所有正常日志,所以我很好奇这是否会导致任何问题?看起来确实不对

编辑:

我要说的是,在我立即登录之后

W/DynamiteModule( 3072): Local module descriptor class for com.google.firebase.auth not found.
W/BiChannelGoogleApi( 3072): [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@36d7eba
W/DynamiteModule( 3072): Local module descriptor class for com.google.firebase.auth not found.
I/FirebaseAuth( 3072): [FirebaseAuth:] Loading module via FirebaseOptions.
I/FirebaseAuth( 3072): [FirebaseAuth:] Preparing to create service connection to gms implementation
D/FirebaseAuth( 3072): Notifying id token listeners about user ( *useridhere*).
D/FirebaseAuth( 3072): Notifying auth state listeners about user ( *useridhere* ).
D/FirebaseApp( 3072): Notifying auth state listeners.
D/FirebaseApp( 3072): Notified 1 auth state listeners.

我知道这很正常。但是,这种情况发生在应用程序运行的中间,这似乎不正常。

< P>当你启动一个使用FieldBasic身份验证的应用程序时,它会自动尝试对以前登录的用户进行重新认证。在本例中,似乎还有一个侦听器负责验证状态更改(可能是FlatterFire本身),Firebase身份验证客户端随后会通知该侦听器验证状态。

根据日志和系统知识,我在下面写了一个解释。如果这没有帮助(足够),请更新您的问题,以包含重现行为所需的最少代码。有关如何以及为什么这样做的更多信息,请参阅。请查看我更新的帖子,我知道让它登录是正常的,但它会在用户登录后再次登录。偶尔(每隔55分钟左右)会刷新用户的ID令牌,我希望也会记录信息。我找到了更多信息,谢谢,就是这样