-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Would be convenient if console.log wrote to Android's LOGCAT #9
Comments
Yes, I've been meaning to do this for a while. Obviously a pull request would be great :) |
Hmm, I see the problem is that console writes to stdout, which Android black-holes. So maybe it would be better to provide a separate android log API, and maybe a wrapper that's compatible with console. How would you go about implementing such a thing? One way would be to export the Android NDK log APIs as a new node module. Another way would be to export the Android Java log APIs as a new node module. Is either of that supported for anode? Are there any examples of Android APIs being exported? Or is there another way? |
You can redirect stdio to logcat. $ adb shell stop |
Thanks!
|
It would be convenient if console.log and related functions wrote to Android's LOGCAT by default.
See android/log.h in the NDK.
The text was updated successfully, but these errors were encountered: