Home | History | Annotate | Download | only in debugging

Lines Matching full:priority

138   <p>Every Android log message has a <em>tag</em> and a <em>priority</em> associated with it.</p>
144 <li>The priority is one of the following character values, ordered from lowest to highest
145 priority:</li>
149 <li><code>V</code> &mdash; Verbose (lowest priority)</li>
161 <li><code>S</code> &mdash; Silent (highest priority, on which nothing is ever printed)</li>
168 <code>&lt;priority&gt;/&lt;tag&gt;</code>.</p>
170 <p>Here's an example of logcat output that shows that the message relates to priority level "I"
177 expressions</em>. Filter expressions let you indicate to the system the tags-priority
181 <p>A filter expression follows this format <code>tag:priority ...</code>, where <code>tag</code>
182 indicates the tag of interest and <code>priority</code> indicates the <em>minimum</em> level of
183 priority to report for that tag. Messages for that tag at or above the specified priority are
184 written to the log. You can supply any number of <code>tag:priority</code> specifications in a
188 the tag "ActivityManager", at priority "Info" or above, and all log messages with tag "MyApp",
189 with priority "Debug" or above:</p>
194 <p>The final element in the above expression, <code>*:S</code>, sets the priority level for all
200 <p>The following filter expression displays all log messages with priority level "warning" and higher, on all tags:</p>
218 <p>Log messages contain a number of metadata fields, in addition to the tag and priority. You can
224 <li><code>brief</code> &mdash; Display priority/tag and PID of the process issuing the
229 <li><code>tag</code> &mdash; Display the priority/tag only.</li>
233 <li><code>time</code> &mdash; Display the date, invocation time, priority/tag, and PID of the
236 <li><code>threadtime</code> &mdash; Display the date, invocation time, priority, tag, and
290 <code>stdout</code> and <code>stderr</code>, both with priority <code>I</code>.</p>