我在真实设备上运行 flutter,print()、log()、debugprint() 不起作用。
还有其他选择吗?
try {
final email = _emailController.text;
final password = _passwordController.text;
final userCredential = FirebaseAuth.instance.signInWithEmailAndPassword(email: email, password: password);
print(userCredential);
} on FirebaseAuthException catch (e) {
log(e.code);
debugprint(e.code);
print(e.code);
}
检查 Android 上的 logcat 是否有过滤器。 您可以使用详细的库来自定义日志:
https://pub.dev/packages/fimber https://pub.dev/packages/logger