summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorRobert Ly <robertly@google.com>2011-07-13 14:25:52 -0700
committerRobert Ly <robertly@google.com>2011-07-13 14:25:52 -0700
commita704daa8b147a6809a4fd31cab5706ffae7c2c08 (patch)
tree7990f292012c1a68c7fd4f4ca4d4aafcd689dd62 /docs
parent532fee45e22acdf779c7135db9a145fe9928c50c (diff)
downloadframeworks_base-a704daa8b147a6809a4fd31cab5706ffae7c2c08.zip
frameworks_base-a704daa8b147a6809a4fd31cab5706ffae7c2c08.tar.gz
frameworks_base-a704daa8b147a6809a4fd31cab5706ffae7c2c08.tar.bz2
docs: fix for bug 3186839
Change-Id: I28305b73f0fe02593e072d690471a1448eb4c675
Diffstat (limited to 'docs')
-rw-r--r--docs/html/guide/developing/tools/adb.jd4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/guide/developing/tools/adb.jd b/docs/html/guide/developing/tools/adb.jd
index a109dc8..78d12ef 100644
--- a/docs/html/guide/developing/tools/adb.jd
+++ b/docs/html/guide/developing/tools/adb.jd
@@ -503,7 +503,7 @@ application and send 500 pseudo-random events to it.</p>
<ul>
<li><code>V</code> &mdash; Verbose (lowest priority)</li>
<li><code>D</code> &mdash; Debug</li>
- <li><code>I</code> &mdash; Info</li>
+ <li><code>I</code> &mdash; Info (default priority)</li>
<li><code>W</code> &mdash; Warning</li>
<li><code>E</code> &mdash; Error</li>
<li><code>F</code> &mdash; Fatal</li>
@@ -520,7 +520,7 @@ of each message, given as <code>&lt;priority&gt;/&lt;tag&gt;</code>. </p>
<p>To reduce the log output to a manageable level, you can restrict log output using <em>filter expressions</em>. Filter expressions let you indicate to the system the tags-priority combinations that you are interested in &mdash; the system suppresses other messages for the specified tags. </p>
-<p>A filter expression follows this format <code>tag:priority ...</code>, where <code>tag</code> indicates the tag of interest and <code>priority</code> indicates the <em>minimum</em> level of priority to report for that tag. Messages for that tag at or above the specified priority are written to the log. You can supply any number of <code>tag:priority</code> specifications in a single filter expression. The series of specifications is whitespace-delimited. </p>
+<p>A filter expression follows this format <code>tag:priority ...</code>, where <code>tag</code> indicates the tag of interest and <code>priority</code> indicates the <em>minimum</em> level of priority to report for that tag. Messages for that tag at or above the specified priority are written to the log. You can supply any number of <code>tag:priority</code> specifications in a single filter expression. The series of specifications is whitespace-delimited. The default output is to show all log messages with the Info priority (*:I).</p>
<p>Here's an example of a filter expression that suppresses all log messages except those with the tag "ActivityManager", at priority "Info" or above, and all log messages with tag "MyApp", with priority "Debug" or above:</p>