On Feb 17, 12:06 pm, Android Beginner <vivek.s...@motorola.com> wrote:
> I am trying to capture logs when emulator starts and I am issuing the
> following command
> " ./adb logcat -f ~/androidlog" in order to output the logs to the
> external file androidlog in my home directory.
>
> However I gives an error that "couldn't open output file: No such file
> or directory".

The command is passed directly through to the "logcat" command on the
device.  It's trying to create a file called "~/androidlog" on the
device itself.

Try "./adb logcat > ~/androidlog" instead.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to