如何在真实的Android设备上看到flutter中打印函数的输出?

问题描述 投票:0回答:1

我在真实设备上运行 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 flutter
1个回答
0
投票

检查 Android 上的 logcat 是否有过滤器。 您可以使用详细的库来自定义日志:

https://pub.dev/packages/fimber https://pub.dev/packages/logger

在此输入图片描述

© www.soinside.com 2019 - 2024. All rights reserved.