Android Log System

Source: Internet
Author: User

There are basically three logs on the system:

Log:

    • For short, textual data
    • In-memory ringbuffer, fast
    • Ephemeral (you'll lose it on a crash, or the ringbuffer scrolls)
    • IntendedApp developers

EventLog is:

    • For short, binary data
    • In-memory ringbuffer, fast
    • Ephemeral (you'll lose it on a crash, or the ringbuffer scrolls)
    • IntendedPlatform developersTo collect statistics

Dropbox:

    • For long text or binary data
    • Persistent, written to disk
    • Kinda slow (Disk)
    • Meant for platform developers too, mostly to collect crashes & large statistics
    • Subject to limits, deleted by Tag if a tag's count and/or size get too large

Dropbox is what we used during development to capture all the strictmode violations in gingerbread.

You can use Dropbox for one-off debugging, but it's not really recommended. it's definitely not recommended as a way to share data between apps. it's not reliable enough, and you can't put permissions on the data. you shoshould just use a shared userid and use the normal filesystem with appropriate permissions.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.