unity pico g2 adb 显示 debug.log
时间: 2023-08-22 19:06:04 浏览: 235
Unity在手机端显示Debug.Log信息
您可以通过以下步骤在 Pico G2 设备上显示 Unity 的 debug.log:
1. 将 Pico G2 设备连接到计算机,并启用 USB 调试模式。
2. 打开命令行界面(如 Windows 的 cmd 或 macOS 的终端)。
3. 切换到您的 Unity 项目的根目录。
4. 运行以下命令:
```
adb logcat Unity:I *:S
```
该命令将显示 Unity 的日志。如果您只想查看 debug.log,您可以运行以下命令:
```
adb logcat Unity:V Debug:V *:S | grep "DEBUGLOG"
```
该命令将过滤掉其他日志,并只显示包含 "DEBUGLOG" 字符串的行,这是 Unity debug.log 中使用的标记。
阅读全文