无法使用adb logcat在react-native app中看到Android日志:找不到匹配项:*:S

根据官方
doc,在终端中键入adb logcat *:S ReactNative:V ReactNativeJS:V将显示所有Android日志,但是当我这样做时,我收到以下错误消息:找不到匹配项:*:S.我已将Log语句放在我的自定义本机模块中,如下所示:

Log.e(标签,“不支持的媒体类型:”类型);.我在网上搜索了这个问题但没有找到解决方案(显然没有人和我有同样的错误).

我想补充一点,代码工作正常.

最佳答案 尝试使用:

adb logcat -s ReactNative:V ReactNativeJS:V

资源:
https://developer.android.com/studio/command-line/logcat.html

点赞