blob: 04eed8ee92ef1be925d1a226869a74cc35974a10 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001page.title=Android Debug Bridge
2@jd:body
3
4<div id="qv-wrapper">
5<div id="qv">
6 <h2>ADB quickview</h2>
7 <ul>
8<li>Manage the state of an emulator or device</li>
9<li>Run shell commands on a device</li>
10<li>Manage port forwarding on an emulator or device</li>
11<li>Copy files to/from an emulator or device</li>
12 </ul>
13
14 <h2>In this document</h2>
15 <ol>
16<li><a href="#issuingcommands">Issuing ADB Commands</a></li>
17<li><a href="#devicestatus">Querying for Emulator/Device Instances</a></li>
18<li><a href="#directingcommands">Directing Commands to a Specific Emulator/Device Instance</a></li>
19<li><a href="#move">Installing an Application</a></li>
20<li><a href="#forwardports">Forwarding Ports</a></li>
21<li><a href="#copyfiles">Copying Files to or from an Emulator/Device Instance</a></li>
22<li><a href="#commandsummary">Listing of adb Commands </a></li>
23<li><a href="#shellcommands">Issuing Shell Commands</a></li>
24<li><a href="#logcat">Enabling logcat Logging</a></li>
25<li><a href="#stopping">Stopping the adb Server</a></li>
26 </ol>
27
28 <h2>See also</h2>
29 <ol>
30 <li><a href="emulator.html">Emulator</a></li>
31 </ol>
32
33</div>
34</div>
35
36<!--
37<p>Android Debug Bridge (adb) is a versatile tool that </a>. </p>
38
39<p>Some of ways you can use adb include:</p>
40
41<ul>
42
43</ul>
44<p>The sections below introduce adb and describe many of its common uses. </p>
45
46<h2>Contents</h2>
47<dl>
48<dt><a href="#overview">Overview</a></dt>
49<dt><a href="#issuingcommands">Issuing adb Commands</a></dt>
50<dt><a href="#devicestatus">Querying for Emulator/Device Instances</a></dt>
51<dt><a href="#directingcommands">Directing Commands to a Specific Emulator/Device Instance</a></dt>
52<dt><a href="#move">Installing an Application</a></dt>
53<dt><a href="#forwardports">Forwarding Ports</a></dt>
54<dt><a href="#copyfiles">Copying Files to or from an Emulator/Device Instance</a></dt>
55<dt><a href="#commandsummary">Listing of adb Commands </a></dt>
56<dt><a href="#shellcommands">Issuing Shell Commands</a></dt>
57 <dd><a href="#sqlite">Examining sqlite3 Databases from a Remote Shell</a></dd>
58 <dd><a href="#monkey">UI/Application Exerciser Monkey</a></dd>
59 <dd><a href="#othershellcommands">Other Shell Commands</a></dd>
60<dt><a href="#logcat">Enabling logcat Logging</a> </dt>
61 <dd><a href="#usinglogcat">Using logcat Commands</a></dd>
62 <dd><a href="#filteringoutput">Filtering Log Output</a></dd>
63 <dd><a href="#outputformat">Controlling Log Output Format</a></dd>
64 <dd><a href="#alternativebuffers">Viewing Alternative Log Buffers</a></dd>
65 <dd><a href="#stdout">Viewing stdout and stderr</a></dd>
66 <dd><a href="#logcatoptions">Listing of logcat Command Options</a></dd>
67<dt><a href="#stopping">Stopping the adb Server</a> </dt>
68</dl>
69
70<a name="overview"></a>
71
72<h2>Overview</h2>
73-->
74<p>Android Debug Bridge (adb) is a versatile tool lets you manage the state of an emulator instance or Android-powered device. It is a client-server program that includes three components: </p>
75
76<ul>
77 <li>A client, which runs on your development machine. You can invoke a client from a shell by issuing an adb command. Other Android tools such as the ADT plugin and DDMS also create adb clients. </li>
78 <li>A server, which runs as a background process on your development machine. The server manages communication between the client and the adb daemon running on an emulator or device. </li>
79 <li>A daemon, which runs as a background process on each emulator or device instance. </li>
80</ul>
81
82<p>When you start an adb client, the client first checks whether there is an adb server process already running. If there isn't, it starts the server process. When the server starts, it binds to local TCP port 5037 and listens for commands sent from adb clients&mdash;all adb clients use port 5037 to communicate with the adb server. </p>
83
84<p>The server then sets up connections to all running emulator/device instances. It locates emulator/device instances by scanning odd-numbered ports in the range 5555 to 5585, the range used by emulators/devices. Where the server finds an adb daemon, it sets up a connection to that port. Note that each emulator/device instance acquires a pair of sequential ports &mdash; an even-numbered port for console connections and an odd-numbered port for adb connections. For example: </p>
85
Dirk Dougherty4e7db252010-01-05 17:03:39 -080086<p style="margin-left:2em">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087Emulator 1, console: 5554<br/>
88Emulator 1, adb: 5555<br>
89Emulator 2, console: 5556<br>
90Emulator 2, adb: 5557 ...
Dirk Dougherty4e7db252010-01-05 17:03:39 -080091</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092
93<p>As shown, the emulator instance connected to adb on port 5555 is the same as the instance whose console listens on port 5554. </p>
94
95<p>Once the server has set up connections to all emulator instances, you can use adb commands to control and access those instances. Because the server manages connections to emulator/device instances and handles commands from multiple adb clients, you can control any emulator/device instance from any client (or from a script).</p>
96
Elliott Hughes7f877062009-07-30 17:00:34 -070097<p>The sections below describe the commands that you can use to access adb capabilities and manage the state of an emulator/device. Note that if you are developing Android applications in Eclipse and have installed the ADT plugin, you do not need to access adb from the command line. The ADT plugin provides a transparent integration of adb into the Eclipse IDE. However, you can still use adb directly as necessary, such as for debugging.</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098
99<a name="issuingcommands"></a>
100
101<h2>Issuing adb Commands</h2>
102
103<p>You can issue adb commands from a command line on your development machine or from a script. The usage is: </p>
104
105 <pre>adb [-d|-e|-s &lt;serialNumber&gt;] &lt;command&gt; </pre>
106
107<p>When you issue a command, the program invokes an adb client. The client is not specifically associated with any emulator instance, so if multiple emulators/devices are running, you need to use the <code>-d</code> option to specify the target instance to which the command should be directed. For more information about using this option, see <a href="#directingcommands">Directing Commands to a Specific Emulator/Device Instance</a>. </p>
108
109<a name="devicestatus"></a>
110
111<h2>Querying for Emulator/Device Instances</h2>
112
113<p>Before issuing adb commands, it is helpful to know what emulator/device instances are connected to the adb server. You can generate a list of attached emulators/devices using the <code>devices</code> command: </p>
114
115 <pre>adb devices</pre>
116
117<p>In response, adb prints this status information for each instance:</p>
118
119<ul>
120 <li>Serial number &mdash; A string created by adb to uniquely identify an emulator/device instance by its
121 console port number. The format of the serial number is <code>&lt;type&gt;-&lt;consolePort&gt;</code>.
122 Here's an example serial number: <code>emulator-5554</code></li>
123 <li>State &mdash; The connection state of the instance. Three states are supported:
124 <ul>
125 <li><code>offline</code> &mdash; the instance is not connected to adb or is not responding.</li>
126 <li><code>device</code> &mdash; the instance is now connected to the adb server. Note that this state does not
127 imply that the Android system is fully booted and operational, since the instance connects to adb
128 while the system is still booting. However, after boot-up, this is the normal operational state of
129 an emulator/device instance.</li>
130 </ul>
131 </li>
132</ul>
133
134<p>The output for each instance is formatted like this: </p>
135
136 <pre>[serialNumber] [state]</pre>
137
138<p>Here's an example showing the <code>devices</code> command and its output:</p>
139
140 <pre>$ adb devices
141List of devices attached
142emulator-5554&nbsp;&nbsp;device
143emulator-5556&nbsp;&nbsp;device
144emulator-5558&nbsp;&nbsp;device</pre>
145
146<p>If there is no emulator/device running, adb returns <code>no device</code>.</p>
147
148
149<a name="directingcommands"></a>
150
151<h2>Directing Commands to a Specific Emulator/Device Instance</h2>
152
153<p>If multiple emulator/device instances are running, you need to specify a target instance when issuing adb commands. To so so, use the <code>-s</code> option in the commands. The usage for the <code>-s</code> option is:</p>
154
155 <pre>adb -s &lt;serialNumber&gt; &lt;command&gt; </pre>
156
157<p>As shown, you specify the target instance for a command using its adb-assigned serial number. You can use the <code>devices</code> command to obtain the serial numbers of running emulator/device instances. </p>
158
159<p>Here is an example: </p>
160
161 <pre>adb -s emulator-5556 install helloWorld.apk</pre>
162
163<p>Note that, if you issue a command without specifying a target emulator/device instance using <code>-s</code>, adb generates an error.
164
165<a name="move"></a>
166
167<h2>Installing an Application</h2>
168<p>You can use adb to copy an application from your development computer and install it on an emulator/device instance. To do so, use the <code>install</code> command. With the command, you must specify the path to the .apk file that you want to install:</p>
169
170<pre>adb install &lt;path_to_apk&gt;</pre>
171
172<p>For more information about how to create an .apk file that you can install on an emulator/device instance, see <a href="{@docRoot}guide/developing/tools/aapt.html">Android Asset Packaging Tool</a> (aapt). </p>
173
174<p>Note that, if you are using the Eclipse IDE and have the ADT plugin installed, you do not need to use adb (or aapt) directly to install your application on the emulator/device. Instead, the ADT plugin handles the packaging and installation of the application for you. </p>
175
176
177<a name="forwardports"></a>
178
179<h2>Forwarding Ports</h2>
180
181 <p>You can use the <code>forward</code> command to set up arbitrary port forwarding &mdash; forwarding of requests on a specific host port to a different port on an emulator/device instance. Here's how you would set up forwarding of host port 6100 to emulator/device port 7100:</p>
182<pre>adb forward tcp:6100 tcp:7100</pre>
183 <p>You can also use adb to set up forwarding to named abstract UNIX domain sockets, as illustrated here:</p>
184<pre>adb forward tcp:6100 local:logd </pre>
185
186<a name="copyfiles"></a>
187
188<h2>Copying Files to or from an Emulator/Device Instance</h2>
189
190<p>You can use the adb commands <code>pull</code> and <code>push</code> to copy files to and from an emulator/device instance's data file. Unlike the <code>install</code> command, which only copies an .apk file to a specific location, the <code>pull</code> and <code>push</code> commands let you copy arbitrary directories and files to any location in an emulator/device instance. </p>
191
192<p>To copy a file or directory (recursively) <em>from</em> the emulator or device, use</p>
193<pre>adb pull &lt;remote&gt; &lt;local&gt;</pre>
194
195<p>To copy a file or directory (recursively) <em>to</em> the emulator or device, use</p>
196 <pre>adb push &lt;local&gt; &lt;remote&gt;</pre>
197
198<p>In the commands, <code>&lt;local&gt;</code> and <code>&lt;remote&gt;</code> refer to the paths to the target files/directory on your development machine (local) and on the emulator/device instance (remote).</p>
199
200<p>Here's an example: </p>
201<pre>adb push foo.txt /sdcard/foo.txt</pre>
202
203<a name="commandsummary"></a>
204
205<h2>Listing of adb Commands</h2>
206
207<p>The table below lists all of the supported adb commands and explains their meaning and usage. </p>
208
209
210<table>
211<tr>
212 <th>Category</th>
213 <th>Command</th>
214 <th>Description</th>
215 <th>Comments</th>
216</tr>
217
218<tr>
219<td rowspan="3">Options</td>
220<td><code>-d</code></td>
221<td>Direct an adb command to the only attached USB device.</td>
222<td>Returns an error if more than one USB device is attached.</td>
223</tr>
224
225<tr>
226<td><code>-e</code></td>
227<td>Direct an adb command to the only running emulator instance.</td>
228<td>Returns an error if more than one emulator instance is running. </td>
229</tr>
230
231<tr>
232<td><code>-s&nbsp;&lt;serialNumber&gt;</code></td>
233<td>Direct an adb command a specific emulator/device instance, referred to by its adb-assigned serial number (such as "emulator-5556").</td>
234<td>If not specified, adb generates an error.</td>
235</tr>
236
237<tr>
238<td rowspan="3">General</td>
239<td><code>devices</code></td>
240<td>Prints a list of all attached emulator/device instances.</td>
241<td>See <a href="#devicestatus">Querying for Emulator/Device Instances</a> for more information.</td>
242</tr>
243
244<tr>
245<td><code>help</code></td>
246<td>Prints a list of supported adb commands.</td>
247<td>&nbsp;</td>
248</tr>
249
250<tr>
251<td><code>version</code></td>
252<td>Prints the adb version number. </td>
253<td>&nbsp;</td>
254</tr>
255
256<tr>
257<td rowspan="3">Debug</td>
258<td ><code>logcat&nbsp;[&lt;option&gt;] [&lt;filter-specs&gt;]</code></td>
259<td>Prints log data to the screen. </td>
260<td>&nbsp;</td>
261</tr>
262
263<tr>
264<td><code>bugreport</code></td>
265<td>Prints <code>dumpsys</code>, <code>dumpstate</code>, and <code>logcat</code> data to the screen, for the purposes of bug reporting. </td>
266<td>&nbsp;</td>
267</tr>
268
269<tr>
270<td><code>jdwp</code></td>
271<td>Prints a list of available JDWP processes on a given device. </td>
272<td>You can use the <code>forward jdwp:&lt;pid&gt;</code> port-forwarding specification to connect to a specific JDWP process. For example: <br>
273 <code>adb forward tcp:8000 jdwp:472</code><br>
274 <code>jdb -attach localhost:8000</code></p>
275 </td>
276</tr>
277
278<tr>
279<td rowspan=3">Data</td>
280<td><code>install&nbsp;&lt;path-to-apk&gt;</code></td>
281<td>Pushes an Android application (specified as a full path to an .apk file) to the data file of an emulator/device. </td>
282<td>&nbsp;</td>
283</tr>
284
285<tr>
286<td><code>pull&nbsp;&lt;remote&gt;&nbsp;&lt;local&gt;</code></td>
287<td>Copies a specified file from an emulator/device instance to your development computer. </td>
288<td>&nbsp;</td>
289</tr>
290
291<tr>
292<td><code>push&nbsp;&lt;local&gt;&nbsp;&lt;remote&gt;</code></td>
293<td>Copies a specified file from your development computer to an emulator/device instance. </td>
294<td>&nbsp;</td>
295</tr>
296
297<tr>
298<td rowspan="2">Ports and Networking</td>
299<td><code>forward&nbsp;&lt;local&gt;&nbsp;&lt;remote&gt;</code></td>
300<td>Forwards socket connections from a specified local port to a specified remote port on the emulator/device instance. </td>
301<td>Port specifications can use these schemes:
302<ul><li><code>tcp:&lt;portnum&gt;</code></li>
303<li><code>local:&lt;UNIX domain socket name&gt;</code></li>
304<li><code>dev:&lt;character device name&gt;</code></li>
305<li><code>jdwp:&lt;pid&gt;</code></li></ul>
306</td>
307</tr>
308
309<tr>
310<td><code>ppp&nbsp;&lt;tty&gt;&nbsp;[parm]...</code></td>
311<td>Run PPP over USB.
312<ul>
313<li><code>&lt;tty&gt;</code> &mdash; the tty for PPP stream. For example <code>dev:/dev/omap_csmi_ttyl</code>. </li>
314<li><code>[parm]... </code> &mdash zero or more PPP/PPPD options, such as <code>defaultroute</code>, <code>local</code>, <code>notty</code>, etc.</li></ul>
315
Kenny Rootc22457e2009-06-09 11:08:00 -0500316<p>Note that you should not automatically start a PPP connection. </p></td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800317<td></td>
318</tr>
319
320<tr>
321<td rowspan="3">Scripting</td>
322<td><code>get-serialno</code></td>
323<td>Prints the adb instance serial number string.</td>
324<td rowspan="2">See <a href="#devicestatus">Querying for Emulator/Device Instances</a> for more information. </td>
325</tr>
326
327<tr>
328<td><code>get-state</code></td>
329<td>Prints the adb state of an emulator/device instance.</td>
330</td>
331</tr>
332
333<tr>
334<td><code>wait-for-device</code></td>
335<td>Blocks execution until the device is online &mdash; that is, until the instance state is <code>device</code>.</td>
336<td>You can prepend this command to other adb commands, in which case adb will wait until the emulator/device instance is connected before issuing the other commands. Here's an example:
337<pre>adb wait-for-device shell getprop</pre>
338
339Note that this command does <em>not</em> cause adb to wait until the entire system is fully booted. For that reason, you should not prepend it to other commands that require a fully booted system. As an example, the <code>install</code> requires the Android package manager, which is available only after the system is fully booted. A command such as
340
341<pre>adb wait-for-device install &lt;app&gt;.apk</pre>
342
343would issue the <code>install</code> command as soon as the emulator or device instance connected to the adb server, but before the Android system was fully booted, so it would result in an error. </td>
344</tr>
345
346
347
348<tr>
349<td rowspan="2">Server</td>
350<td><code>start-server</code></td>
351<td>Checks whether the adb server process is running and starts it, if not.</td>
352<td>&nbsp;</td>
353</tr>
354
355<tr>
356<td><code>kill-server</code></td>
357<td>Terminates the adb server process.</td>
358<td>&nbsp;</td>
359</tr>
360
361
362
363<tr>
364<td rowspan="2">Shell</td>
365<td><code>shell</code></td>
366<td>Starts a remote shell in the target emulator/device instance.</td>
367<td rowspan="2">See <a href="#shellcommands">Issuing Shell Commands</a> for more information. </td>
368</tr>
369
370<tr>
371<td><code>shell&nbsp;[&lt;shellCommand&gt;]</code></td>
372<td>Issues a shell command in the target emulator/device instance and then exits the remote shell.</td>
373</tr>
374
375</table>
376
377
378<a name="shellcommands"></a>
379
380<h2>Issuing Shell Commands</h2>
381
382<p>Adb provides an ash shell that you can use to run a variety of commands on an emulator
383or device. The command binaries are stored in the file system of the emulator or device,
384in this location: </p>
385
386<pre>/system/bin/...</pre>
387
388<p>You can use the <code>shell</code> command to issue commands, with or without entering the adb remote shell on the emulator/device. </p>
389
390<p>To issue a single command without entering a remote shell, use the <code>shell</code> command like this: </p>
391
392 <pre>adb [-d|-e|-s {&lt;serialNumber&gt;}] shell &lt;shellCommand&gt;</pre>
393
394<p>To drop into a remote shell on a emulator/device instance, use the <code>shell</code> command like this:</p>
395
396 <pre>adb [-d|-e|-s {&lt;serialNumber&gt;}] shell</pre>
397
398<p>When you are ready to exit the remote shell, use <code>CTRL+D</code> or <code>exit</code> to end the shell session. </p>
399
400<p>The sections below provide more information about shell commands that you can use.</p>
401
402<a name="sqlite" id="sqlite"></a>
403
404<h3>Examining sqlite3 Databases from a Remote Shell</h3>
405
406<p>From an adb remote shell, you can use the
407<a href="http://www.sqlite.org/sqlite.html">sqlite3</a> command-line program to
408manage SQLite databases created by Android applications. The
409<code>sqlite3</code> tool includes many useful commands, such as
410<code>.dump</code> to print out the contents of a table and
411<code>.schema</code> to print the SQL CREATE statement for an existing table.
412The tool also gives you the ability to execute SQLite commands on the fly.</p>
413
414<p>To use <code>sqlite3</code>, enter a remote shell on the emulator instance, as described above, then invoke the tool using the <code>sqlite3</code> command. Optionally, when invoking <code>sqlite3</code> you can specify the full path to the database you want to explore. Emulator/device instances store SQLite3 databases in the folder <code><span chatdir="1"><span chatindex="259474B4B070F261">/data/data/<em>&lt;package_name&gt;</em>/databases</span></span>/</code>. </p>
415
416<p>Here's an example: </p>
417
418<pre>$ adb -s emulator-5554 shell
419# sqlite3 /data/data/com.example.google.rss.rssexample/databases/rssitems.db
420SQLite version 3.3.12
421Enter &quot;.help&quot; for instructions
422<em>.... enter commands, then quit...</em>
423sqlite&gt; .exit </pre>
424
425<p>Once you've invoked <code>sqlite3</code>, you can issue <code>sqlite3</code> commands in the shell. To exit and return to the adb remote shell, use <code>exit</code> or <code>CTRL+D</code>.
426
427
428<a name="monkey"></a>
429
430<h3>UI/Application Exerciser Monkey</h3>
431
432<p>The Monkey is a program that runs on your emulator or device and generates pseudo-random
433streams of user events such as clicks, touches, or gestures, as well as a number of system-level
434events. You can use the Monkey to stress-test applications that you are developing,
435in a random yet repeatable manner.</p>
436
437<p>The simplest way to use the monkey is with the following command, which will launch your
438application and send 500 pseudo-random events to it.</p>
439
440<pre>$ adb shell monkey -v -p your.package.name 500</pre>
441
442<p>For more information about command options for Monkey, see the complete
443<a href="{@docRoot}guide/developing/tools/monkey.html" title="monkey">UI/Application Exerciser Monkey</a> documentation page.</p>
444
445
446<a name="othershellcommands"></a>
447
448<h3>Other Shell Commands</h3>
449
450<p>The table below lists several of the adb shell commands available. For a complete list of commands and programs, start an emulator instance and use the <code>adb -help</code> command. </p>
451
452<pre>adb shell ls /system/bin</pre>
453
454<p>Help is available for most of the commands. </p>
455
456<table>
457<tr>
458 <th>Shell Command</th>
459 <th>Description</th>
460 <th>Comments</th>
461</tr>
462
463<tr>
464<td><code>dumpsys</code></td>
465<td>Dumps system data to the screen.</td>
466<td rowspan=4">The <a href="{@docRoot}guide/developing/tools/ddms.html">Dalvik Debug Monitor Service</a> (DDMS) tool offers integrated debug environment that you may find easier to use.</td>
467</tr>
468
469<tr>
470<td><code>dumpstate</code></td>
471<td>Dumps state to a file.</td>
472</tr>
473
474<tr>
475<td><code>logcat&nbsp;[&lt;option&gt;]...&nbsp;[&lt;filter-spec&gt;]...</code></td>
476<td>Enables radio logging and prints output to the screen. </td>
477</tr>
478
479<tr>
480<td><code>dmesg</code></td>
481<td>Prints kernel debugging messages to the screen. </td>
482</tr>
483
484<tr>
485<td><code>start</code></td>
486<td>Starts (restarts) an emulator/device instance.</td>
487<td>&nbsp;</td>
488</tr>
489
490<tr>
491<td><code>stop</code></td>
492<td>Stops execution of an emulator/device instance.</td>
493<td>&nbsp;</td>
494</tr>
495
496</table>
497
498<a name="logcat"></a>
499
500<h2>Enabling logcat Logging</h2>
501
502<p>The Android logging system provides a mechanism for collecting and viewing system debug output. Logs from various applications and portions of the system are collected in a series of circular buffers, which then can be viewed and filtered by the <code>logcat</code> command.</p>
503
504<a name="usinglogcat"></a>
505
506<h3>Using logcat Commands</h3>
507
508<p>You can use the <code>logcat</code> command to view and follow the contents of the system's log buffers. The general usage is:</p>
509
510<pre>[adb] logcat [&lt;option&gt;] ... [&lt;filter-spec&gt;] ...</pre>
511
512<p>The sections below explain filter specifications and the command options. See <a href="#logcatoptions">Listing of logcat Command Options</a> for a summary of options. </p>
513
514<p>You can use the <code>logcat</code> command from your development computer or from a remote adb shell in an emulator/device instance. To view log output in your development computer, you use</p>
515
516<pre>$ adb logcat</pre>
517
518<p>and from a remote adb shell you use</p>
519
520<pre># logcat</pre>
521
522<a name="filteringoutput"></a>
523
524<h3>Filtering Log Output</h3>
525
526<p>Every Android log message has a <em>tag</em> and a <em>priority</em> associated with it. </p>
527
528<ul>
529<li>The tag of a log message is a short string indicating the system component from which the message originates (for example, "View" for the view system). </li>
530
531<li>The priority is one of the following character values, ordered from lowest to highest priority:</li>
532
533<ul>
534 <li><code>V</code> &mdash; Verbose (lowest priority)</li>
535 <li><code>D</code> &mdash; Debug</li>
536 <li><code>I</code> &mdash; Info</li>
537 <li><code>W</code> &mdash; Warning</li>
538 <li><code>E</code> &mdash; Error</li>
539 <li><code>F</code> &mdash; Fatal</li>
540 <li><code>S</code> &mdash; Silent (highest priority, on which nothing is ever printed)</li>
541</ul>
542</ul>
543
544<p>You can obtain a list of tags used in the system, together with priorities, by running <code>logcat</code> and observing the first two columns
545of each message, given as <code>&lt;priority&gt;/&lt;tag&gt;</code>. </p>
546
547<p>Here's an example of logcat output that shows that the message relates to priority level "I" and tag "ActivityManager":</p>
548
549<pre>I/ActivityManager( 585): Starting activity: Intent { action=android.intent.action...}</pre>
550
551<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>
552
553<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>
554
555<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>
556
557<pre>adb logcat ActivityManager:I MyApp:D *:S</pre>
558
559<p>The final element in the above expression, <code>*:S</code>, sets the priority level for all tags to "silent", thus ensuring only log messages with "View" and "MyApp" are displayed. Using <code>*:S</code> is an excellent way to ensure that log output is restricted to the filters that you have explicitly specified &mdash; it lets your filters serve as a "whitelist" for log output.</p>
560
561<p>The following filter expression displays all log messages with priority level "warning" and higher, on all tags:</p>
562
563<pre>adb logcat *:W</pre>
564
565<p>If you're running <code>logcat</code> from your development computer (versus running it on a remote adb shell), you can also set a default filter expression by exporting a value for the environment variable <code>ANDROID_LOG_TAGS</code>:</p>
566
567<pre>export ANDROID_LOG_TAGS="ActivityManager:I MyApp:D *:S"</pre>
568
569<p>Note that <code>ANDROID_LOG_TAGS</code> filter is not exported to the emulator/device instance, if you are running <code>logcat</code> from a remote shell or using <code>adb shell logcat</code>.</p>
570
571
572<a name="outputformat"></a>
573
574<h3>Controlling Log Output Format</h3>
575
576<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>
577
578<ul>
579 <li><code>brief</code> &mdash; Display priority/tag and PID of originating process (the default format).</li>
580 <li><code>process</code> &mdash; Display PID only.</li>
581 <li><code>tag</code> &mdash; Display the priority/tag only. </li>
582 <li><code>thread</code> &mdash; Display process:thread and priority/tag only. </li>
583 <li><code>raw</code> &mdash; Display the raw log message, with no other metadata fields.</li>
584 <li><code>time</code> &mdash; Display the date, invocation time, priority/tag, and PID of the originating process.</li>
585 <li><code>long</code> &mdash; Display all metadata fields and separate messages with a blank lines.</li>
586</ul>
587
588<p>When starting <code>logcat</code>, you can specify the output format you want by using the <code>-v</code> option:</p>
589
590<pre>[adb] logcat [-v &lt;format&gt;]</pre>
591
592<p>Here's an example that shows how to generate messages in <code>thread</code> output format: </p>
593
594<pre>adb logcat -v thread</pre>
595
596<p>Note that you can only specify one output format with the <code>-v</code> option. </p>
597
598<a name="alternativebuffers"></a>
599
600<h3>Viewing Alternative Log Buffers </h3>
601
602<p>The Android logging system keeps multiple circular buffers for log messages, and not all of the log messages are sent to the default circular buffer. To see additional log messages, you can start <code>logcat</code> with the <code>-b</code> option, to request viewing of an alternate circular buffer. You can view any of these alternate buffers: </p>
603
604<ul>
605<li><code>radio</code> &mdash; View the buffer that contains radio/telephony related messages.</li>
606<li><code>events</code> &mdash; View the buffer containing events-related messages.</li>
607<li><code>main</code> &mdash; View the main log buffer (default)</li>
608</ul>
609
610<p>The usage of the <code>-b</code> option is:</p>
611
612<pre>[adb] logcat [-b &lt;buffer&gt;]</pre>
613
614<p>Here's an example of how to view a log buffer containing radio and telephony messages: </p>
615
616<pre>adb logcat -b radio</b></pre>
617
618<a name="stdout"></a>
619
620<h3>Viewing stdout and stderr</h3>
621
622<p>By default, the Android system sends <code>stdout</code> and <code>stderr</code> (<code>System.out</code> and <code>System.err</code>) output to <code>/dev/null</code>. In
623processes that run the Dalvik VM, you can have the system write a copy of the output to the log file. In this case, the system writes the messages to the log using the log tags <code>stdout</code> and <code>stderr</code>, both with priority <code>I</code>. </p>
624
625<p>To route the output in this way, you stop a running emulator/device instance and then use the shell command <code>setprop</code> to enable the redirection of output. Here's how you do it: </p>
626
627<pre>$ adb shell stop
628$ adb shell setprop log.redirect-stdio true
629$ adb shell start</pre>
630
631<p>The system retains this setting until you terminate the emulator/device instance. To use the setting as a default on the emulator/device instance, you can add an entry to <code>/data/local.prop</code>
632on the device.</p>
633
634<a name="logcatoptions"></a>
635
636<h3>Listing of logcat Command Options</h3>
637
638<table>
639<tr>
640 <th>Option</th>
641 <th>Description</th>
642</tr>
643
644<tr>
645<td><code>-b&nbsp;&lt;buffer&gt;</code></td>
646<td>Loads an alternate log buffer for viewing, such as <code>event</code> or <code>radio</code>. The <code>main</code> buffer is used by default. See <a href="#alternativebuffers">Viewing Alternative Log Buffers</a>.</td>
647</tr>
648
649<tr>
650<td><code>-c</code></td>
651<td>Clears (flushes) the entire log and exits. </td>
652</tr>
653
654<tr>
655<td><code>-d</code></td>
656<td>Dumps the log to the screen and exits.</td>
657</tr>
658
659<tr>
660<td><code>-f&nbsp;&lt;filename&gt;</code></td>
661<td>Writes log message output to <code>&lt;filename&gt;</code>. The default is <code>stdout</code>.</td>
662</tr>
663
664<tr>
665<td><code>-g</code></td>
666<td>Prints the size of the specified log buffer and exits. </td>
667</tr>
668
669<tr>
670<td><code>-n&nbsp;&lt;count&gt;</code></td>
671<td>Sets the maximum number of rotated logs to <code>&lt;count&gt;</code>. The default value is 4. Requires the <code>-r</code> option. </td>
672</tr>
673
674<tr>
675<td><code>-r&nbsp;&lt;kbytes&gt;</code></td>
676<td>Rotates the log file every <code>&lt;kbytes&gt;</code> of output. The default value is 16. Requires the <code>-f</code> option. </td>
677</tr>
678
679<tr>
680<td><code>-s</code></td>
681<td>Sets the default filter spec to silent. </td>
682</tr>
683
684<tr>
685<td><code>-v&nbsp;&lt;format&gt;</code></td>
686<td>Sets the output format for log messages. The default is <code>brief</code> format. For a list of supported formats, see <a href="#outputformat">Controlling Log Output Format</a>.</td>
687</tr>
688
689</table>
690
691<a name="stopping"></a>
692
693<h2>Stopping the adb Server</h2>
694
695<p>In some cases, you might need to terminate the adb server process and then restart it. For example, if adb does not respond to a command, you can terminate the server and restart it and that may resolve the problem. </p>
696
697<p>To stop the adb server, use the <code>kill-server</code>. You can then restart the server by issuing any adb command. </p>
698
699