From 9586f9748f7dfc758a403202411f41be26be165e Mon Sep 17 00:00:00 2001 From: Google Code Exporter Date: Wed, 17 Feb 2016 02:14:51 -0500 Subject: [PATCH] Migrating wiki contents from Google Code --- Intents.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ ProjectHome.md | 11 +++++++++++ 2 files changed, 55 insertions(+) create mode 100644 Intents.md create mode 100644 ProjectHome.md diff --git a/Intents.md b/Intents.md new file mode 100644 index 0000000..5f79027 --- /dev/null +++ b/Intents.md @@ -0,0 +1,44 @@ +aLogcat accepts the following intents, + +## org.jtb.alogcat.intent.START ## + +This starts the application. Intent must be broadcast with the "single top" for it to effect an already running copy of aLogcat. + +The following extras are supported, + +### FILTER ### + +Sets aLogcat's filter value. Value is interpreted as a string if substring filter mode is in effect, or as a regular expression otherwise. Again, the regular expression string value must be Java conforming (it needs to be properly escaped). + +Note in all cases, extras that effect aLogcat's preferences are persistent. That is, if you start aLogcat with intent START and pass a filter extra, the filter value lives beyond the life cycle of this particular application invocation. I.e., it acts as if you had changed the filter value from aLogcat's preferences. + +### LEVEL ### + +Sets aLogcat's level. Value can be one of: V, D, I, W, or E. + +## org.jtb.alogcat.intent.SAVE ## + +Triggers aLogcat to immediately write a log snapshot to /sdcard/alogcat. This intent accepts the same extras a the START intent, with the same semantics. + +## org.jtb.alogcat.intent.SHARE ## + +Triggers aLogcat to share the state of the current log, as if menu > share was selected from the application. This intent accepts the same extras a the START intent, with the same semantics. + + +## org.jtb.alogcat.intent.SAVE\_START ## + +Triggers aLogcat to begin periodically saving log snapshots to /sdcard/alogcat. In addition to the extras allows by the START intent, this intent allows, + +### FREQUENCY ### + +The frequency to save log snapshots. Value must be one of, + +``` +FIFTEEN_MINUTES +HALF_HOUR +HOUR +``` + +## org.jtb.alogcat.intent.SAVE\_STOP ## + +Triggers aLogcat to stop periodically saving log snapshots to /sdcard/alogcat. \ No newline at end of file diff --git a/ProjectHome.md b/ProjectHome.md new file mode 100644 index 0000000..e278352 --- /dev/null +++ b/ProjectHome.md @@ -0,0 +1,11 @@ +aLogcat is the well-known developer tool logcat, in the form of an Android application. + +View color-coded, scrolling (tailed) Android device (logcat) logs directly from your phone. No USB, adb, or emailing necessary. + +Set log format / level / buffer, filter logs by regex, clear log file, save to SD. + +Share logs via any application that handles plain text or HTML sharing, including Gmail, Email, Pastedroid, Bluetooth, and others. + +Install application Pastedroid to share logs via pastebin. Ensure HTML output is disabled in preferences as this only supports plain text logs. + +Optionally save log files at specified intervals in the background. \ No newline at end of file