diff options
author | Robert Ly <robertly@google.com> | 2011-07-13 14:25:52 -0700 |
---|---|---|
committer | Robert Ly <robertly@google.com> | 2011-07-13 14:25:52 -0700 |
commit | a704daa8b147a6809a4fd31cab5706ffae7c2c08 (patch) | |
tree | 7990f292012c1a68c7fd4f4ca4d4aafcd689dd62 /docs | |
parent | 532fee45e22acdf779c7135db9a145fe9928c50c (diff) | |
download | frameworks_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.jd | 4 |
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> — Verbose (lowest priority)</li> <li><code>D</code> — Debug</li> - <li><code>I</code> — Info</li> + <li><code>I</code> — Info (default priority)</li> <li><code>W</code> — Warning</li> <li><code>E</code> — Error</li> <li><code>F</code> — Fatal</li> @@ -520,7 +520,7 @@ of each message, given as <code><priority>/<tag></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 — 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> |