diff options
Diffstat (limited to 'docs/html/guide/developing/tools/adb.jd')
-rw-r--r-- | docs/html/guide/developing/tools/adb.jd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/guide/developing/tools/adb.jd b/docs/html/guide/developing/tools/adb.jd index d32cf66..50c7236 100644 --- a/docs/html/guide/developing/tools/adb.jd +++ b/docs/html/guide/developing/tools/adb.jd @@ -546,12 +546,12 @@ of each message, given as <code><priority>/<tag></code>. </p> <p>Log messages contain a number of metadata fields, in addition to the tag and priority. You can modify the output format for messages so that they display a specific metadata field. To do so, you use the <code>-v</code> option and specify one of the supported output formats listed below. </p> <ul> - <li><code>brief</code> — Display priority/tag and PID of originating process (the default format).</li> + <li><code>brief</code> — Display priority/tag and the PID of process issuing the message (the default format).</li> <li><code>process</code> — Display PID only.</li> <li><code>tag</code> — Display the priority/tag only. </li> - <li><code>thread</code> — Display process:thread and priority/tag only. </li> <li><code>raw</code> — Display the raw log message, with no other metadata fields.</li> - <li><code>time</code> — Display the date, invocation time, priority/tag, and PID of the originating process.</li> + <li><code>time</code> — Display the date, invocation time, priority/tag, and PID of the process issuing the message.</li> + <li><code>threadtime</code> — Display the date, invocation time, priority, tag, and the PID and TID of the thread issuing the message.</li> <li><code>long</code> — Display all metadata fields and separate messages with a blank lines.</li> </ul> |