在终端中显示 Logcat?

发布于 2024-12-07 09:57:02 字数 403 浏览 1 评论 0原文

编辑/解决方案:在platform-tools目录中执行./adb logcat


原始问题:

我知道有一种方法可以在 Mac 上的终端中显示 Android 设备/模拟器的 LogCat,但我不确定该命令是什么。这主要是由于我对 UNIX 命令的不熟练。

以下是我之前的失败经历:

adb logcat
adb.exe logcat
FULL_PATH_TO_PLATFORM_TOOLS/adb logcat
FULL_PATH_TO_PLATFORM_TOOLS/adb.exe logcat

Edit/Solution: execute ./adb logcat in the platform-tools directory.


Original Question:

I know that there's a way to display the LogCat for an Android device/emulator in Terminal on my Mac, but I'm not sure what the command is. This is mostly due to my incompetence with UNIX commands.

Here are my previous failures:

adb logcat
adb.exe logcat
FULL_PATH_TO_PLATFORM_TOOLS/adb logcat
FULL_PATH_TO_PLATFORM_TOOLS/adb.exe logcat

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

软糯酥胸 2024-12-14 09:57:02

啊,只需 adb logcat 就可以了。如果 Android SDK 工具目录不在您的 PATH 中,您可能需要执行显式路径,但这应该可以做到。

Ah, just adb logcat should work. You may need to do an explicit path if the Android SDK tools directories aren't in your PATH, but that should do it.

无声静候 2024-12-14 09:57:02

如果你有NPM,你可以安装模块:

$ npm install -g logcat

这将使你开始在控制台和//127.0.0.1/中监视彩色logcat。

$ logcat

这里是描述

If you have NPM, you could install module:

$ npm install -g logcat

that will provide you to start monitoring colored logcat in console and //127.0.0.1/.

$ logcat

Here is description

川水往事 2024-12-14 09:57:02

在终端模拟器中:

logcat > /sdcard/logfile.txt

显然,这会将 logcat 内容放入 /sdcard/logfile.txt (您的 sd 卡主目录)中。
来源(有更多获取logcat的方法):

In Terminal Emulator:

logcat > /sdcard/logfile.txt

This will put the logcat content in /sdcard/logfile.txt (your sd card main directory) obviously.
Source (with more ways to acquire logcat):

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文