blob: 50c72365d03def4866d3a7a78f4a9e3622aff152 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001page.title=Android Debug Bridge
Scott Main9cf2fa02011-02-15 18:26:07 -08002parent.title=Tools
3parent.link=index.html
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004@jd:body
5
6<div id="qv-wrapper">
7<div id="qv">
8 <h2>ADB quickview</h2>
9 <ul>
10<li>Manage the state of an emulator or device</li>
11<li>Run shell commands on a device</li>
12<li>Manage port forwarding on an emulator or device</li>
13<li>Copy files to/from an emulator or device</li>
14 </ul>
15
16 <h2>In this document</h2>
17 <ol>
18<li><a href="#issuingcommands">Issuing ADB Commands</a></li>
19<li><a href="#devicestatus">Querying for Emulator/Device Instances</a></li>
20<li><a href="#directingcommands">Directing Commands to a Specific Emulator/Device Instance</a></li>
21<li><a href="#move">Installing an Application</a></li>
22<li><a href="#forwardports">Forwarding Ports</a></li>
23<li><a href="#copyfiles">Copying Files to or from an Emulator/Device Instance</a></li>
24<li><a href="#commandsummary">Listing of adb Commands </a></li>
25<li><a href="#shellcommands">Issuing Shell Commands</a></li>
26<li><a href="#logcat">Enabling logcat Logging</a></li>
27<li><a href="#stopping">Stopping the adb Server</a></li>
28 </ol>
29
30 <h2>See also</h2>
31 <ol>
32 <li><a href="emulator.html">Emulator</a></li>
33 </ol>
34
35</div>
36</div>
37
Scott Maina2272132011-05-24 17:17:27 -070038<p>Android Debug Bridge (adb) is a versatile command line tool that lets you communicate with an
39emulator instance or connected Android-powered device. It is a client-server program that includes
40three components: </p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041
42<ul>
43 <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>
44 <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>
45 <li>A daemon, which runs as a background process on each emulator or device instance. </li>
46</ul>
47
Scott Main58d19662010-12-15 17:21:30 -080048<p>You can find the {@code adb} tool in {@code &lt;sdk&gt;/platform-tools/}.</p>
49
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050<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>
51
52<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>
53
Dirk Dougherty4e7db252010-01-05 17:03:39 -080054<p style="margin-left:2em">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055Emulator 1, console: 5554<br/>
56Emulator 1, adb: 5555<br>
57Emulator 2, console: 5556<br>
58Emulator 2, adb: 5557 ...
Dirk Dougherty4e7db252010-01-05 17:03:39 -080059</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060
61<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>
62
63<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>
64
Elliott Hughes7f877062009-07-30 17:00:34 -070065<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 -080066
67<a name="issuingcommands"></a>
68
69<h2>Issuing adb Commands</h2>
70
71<p>You can issue adb commands from a command line on your development machine or from a script. The usage is: </p>
72
73 <pre>adb [-d|-e|-s &lt;serialNumber&gt;] &lt;command&gt; </pre>
74
75<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>
76
77<a name="devicestatus"></a>
78
79<h2>Querying for Emulator/Device Instances</h2>
80
81<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>
82
83 <pre>adb devices</pre>
84
85<p>In response, adb prints this status information for each instance:</p>
86
87<ul>
88 <li>Serial number &mdash; A string created by adb to uniquely identify an emulator/device instance by its
89 console port number. The format of the serial number is <code>&lt;type&gt;-&lt;consolePort&gt;</code>.
90 Here's an example serial number: <code>emulator-5554</code></li>
91 <li>State &mdash; The connection state of the instance. Three states are supported:
92 <ul>
93 <li><code>offline</code> &mdash; the instance is not connected to adb or is not responding.</li>
94 <li><code>device</code> &mdash; the instance is now connected to the adb server. Note that this state does not
95 imply that the Android system is fully booted and operational, since the instance connects to adb
96 while the system is still booting. However, after boot-up, this is the normal operational state of
97 an emulator/device instance.</li>
98 </ul>
99 </li>
100</ul>
101
102<p>The output for each instance is formatted like this: </p>
103
104 <pre>[serialNumber] [state]</pre>
105
106<p>Here's an example showing the <code>devices</code> command and its output:</p>
107
108 <pre>$ adb devices
109List of devices attached
110emulator-5554&nbsp;&nbsp;device
111emulator-5556&nbsp;&nbsp;device
112emulator-5558&nbsp;&nbsp;device</pre>
113
114<p>If there is no emulator/device running, adb returns <code>no device</code>.</p>
115
116
117<a name="directingcommands"></a>
118
119<h2>Directing Commands to a Specific Emulator/Device Instance</h2>
120
121<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>
122
123 <pre>adb -s &lt;serialNumber&gt; &lt;command&gt; </pre>
124
125<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>
126
127<p>Here is an example: </p>
128
129 <pre>adb -s emulator-5556 install helloWorld.apk</pre>
130
131<p>Note that, if you issue a command without specifying a target emulator/device instance using <code>-s</code>, adb generates an error.
132
133<a name="move"></a>
134
135<h2>Installing an Application</h2>
136<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>
137
138<pre>adb install &lt;path_to_apk&gt;</pre>
139
Scott Main300cd262011-02-08 15:04:42 -0800140<p>For more information about how to create an .apk file that you can install on an emulator/device
141instance, see <a href="{@docRoot}guide/developing/building/index.html">Building and Running</a></p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800142
143<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>
144
145
146<a name="forwardports"></a>
147
148<h2>Forwarding Ports</h2>
149
150 <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>
151<pre>adb forward tcp:6100 tcp:7100</pre>
152 <p>You can also use adb to set up forwarding to named abstract UNIX domain sockets, as illustrated here:</p>
153<pre>adb forward tcp:6100 local:logd </pre>
154
155<a name="copyfiles"></a>
156
157<h2>Copying Files to or from an Emulator/Device Instance</h2>
158
159<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>
160
161<p>To copy a file or directory (recursively) <em>from</em> the emulator or device, use</p>
162<pre>adb pull &lt;remote&gt; &lt;local&gt;</pre>
163
164<p>To copy a file or directory (recursively) <em>to</em> the emulator or device, use</p>
165 <pre>adb push &lt;local&gt; &lt;remote&gt;</pre>
166
167<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>
168
169<p>Here's an example: </p>
170<pre>adb push foo.txt /sdcard/foo.txt</pre>
171
172<a name="commandsummary"></a>
173
174<h2>Listing of adb Commands</h2>
175
176<p>The table below lists all of the supported adb commands and explains their meaning and usage. </p>
177
178
179<table>
180<tr>
181 <th>Category</th>
182 <th>Command</th>
183 <th>Description</th>
184 <th>Comments</th>
185</tr>
186
187<tr>
188<td rowspan="3">Options</td>
189<td><code>-d</code></td>
190<td>Direct an adb command to the only attached USB device.</td>
191<td>Returns an error if more than one USB device is attached.</td>
192</tr>
193
194<tr>
195<td><code>-e</code></td>
196<td>Direct an adb command to the only running emulator instance.</td>
197<td>Returns an error if more than one emulator instance is running. </td>
198</tr>
199
200<tr>
201<td><code>-s&nbsp;&lt;serialNumber&gt;</code></td>
202<td>Direct an adb command a specific emulator/device instance, referred to by its adb-assigned serial number (such as "emulator-5556").</td>
203<td>If not specified, adb generates an error.</td>
204</tr>
205
206<tr>
207<td rowspan="3">General</td>
208<td><code>devices</code></td>
209<td>Prints a list of all attached emulator/device instances.</td>
210<td>See <a href="#devicestatus">Querying for Emulator/Device Instances</a> for more information.</td>
211</tr>
212
213<tr>
214<td><code>help</code></td>
215<td>Prints a list of supported adb commands.</td>
216<td>&nbsp;</td>
217</tr>
218
219<tr>
220<td><code>version</code></td>
221<td>Prints the adb version number. </td>
222<td>&nbsp;</td>
223</tr>
224
225<tr>
226<td rowspan="3">Debug</td>
227<td ><code>logcat&nbsp;[&lt;option&gt;] [&lt;filter-specs&gt;]</code></td>
228<td>Prints log data to the screen. </td>
229<td>&nbsp;</td>
230</tr>
231
232<tr>
233<td><code>bugreport</code></td>
234<td>Prints <code>dumpsys</code>, <code>dumpstate</code>, and <code>logcat</code> data to the screen, for the purposes of bug reporting. </td>
235<td>&nbsp;</td>
236</tr>
237
238<tr>
239<td><code>jdwp</code></td>
240<td>Prints a list of available JDWP processes on a given device. </td>
241<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>
242 <code>adb forward tcp:8000 jdwp:472</code><br>
243 <code>jdb -attach localhost:8000</code></p>
244 </td>
245</tr>
246
247<tr>
248<td rowspan=3">Data</td>
249<td><code>install&nbsp;&lt;path-to-apk&gt;</code></td>
250<td>Pushes an Android application (specified as a full path to an .apk file) to the data file of an emulator/device. </td>
251<td>&nbsp;</td>
252</tr>
253
254<tr>
255<td><code>pull&nbsp;&lt;remote&gt;&nbsp;&lt;local&gt;</code></td>
256<td>Copies a specified file from an emulator/device instance to your development computer. </td>
257<td>&nbsp;</td>
258</tr>
259
260<tr>
261<td><code>push&nbsp;&lt;local&gt;&nbsp;&lt;remote&gt;</code></td>
262<td>Copies a specified file from your development computer to an emulator/device instance. </td>
263<td>&nbsp;</td>
264</tr>
265
266<tr>
267<td rowspan="2">Ports and Networking</td>
268<td><code>forward&nbsp;&lt;local&gt;&nbsp;&lt;remote&gt;</code></td>
269<td>Forwards socket connections from a specified local port to a specified remote port on the emulator/device instance. </td>
270<td>Port specifications can use these schemes:
271<ul><li><code>tcp:&lt;portnum&gt;</code></li>
272<li><code>local:&lt;UNIX domain socket name&gt;</code></li>
273<li><code>dev:&lt;character device name&gt;</code></li>
274<li><code>jdwp:&lt;pid&gt;</code></li></ul>
275</td>
276</tr>
277
278<tr>
279<td><code>ppp&nbsp;&lt;tty&gt;&nbsp;[parm]...</code></td>
280<td>Run PPP over USB.
281<ul>
282<li><code>&lt;tty&gt;</code> &mdash; the tty for PPP stream. For example <code>dev:/dev/omap_csmi_ttyl</code>. </li>
Gilles Debunnec40c65a2011-07-21 15:25:41 -0700283<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>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284
Kenny Rootc22457e2009-06-09 11:08:00 -0500285<p>Note that you should not automatically start a PPP connection. </p></td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800286<td></td>
287</tr>
288
289<tr>
290<td rowspan="3">Scripting</td>
291<td><code>get-serialno</code></td>
292<td>Prints the adb instance serial number string.</td>
293<td rowspan="2">See <a href="#devicestatus">Querying for Emulator/Device Instances</a> for more information. </td>
294</tr>
295
296<tr>
297<td><code>get-state</code></td>
298<td>Prints the adb state of an emulator/device instance.</td>
299</td>
300</tr>
301
302<tr>
303<td><code>wait-for-device</code></td>
304<td>Blocks execution until the device is online &mdash; that is, until the instance state is <code>device</code>.</td>
305<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:
306<pre>adb wait-for-device shell getprop</pre>
307
308Note 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
309
310<pre>adb wait-for-device install &lt;app&gt;.apk</pre>
311
312would 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>
313</tr>
314
315
316
317<tr>
318<td rowspan="2">Server</td>
319<td><code>start-server</code></td>
320<td>Checks whether the adb server process is running and starts it, if not.</td>
321<td>&nbsp;</td>
322</tr>
323
324<tr>
325<td><code>kill-server</code></td>
326<td>Terminates the adb server process.</td>
327<td>&nbsp;</td>
328</tr>
329
330
331
332<tr>
333<td rowspan="2">Shell</td>
334<td><code>shell</code></td>
335<td>Starts a remote shell in the target emulator/device instance.</td>
336<td rowspan="2">See <a href="#shellcommands">Issuing Shell Commands</a> for more information. </td>
337</tr>
338
339<tr>
340<td><code>shell&nbsp;[&lt;shellCommand&gt;]</code></td>
341<td>Issues a shell command in the target emulator/device instance and then exits the remote shell.</td>
342</tr>
343
344</table>
345
346
347<a name="shellcommands"></a>
348
349<h2>Issuing Shell Commands</h2>
350
351<p>Adb provides an ash shell that you can use to run a variety of commands on an emulator
352or device. The command binaries are stored in the file system of the emulator or device,
353in this location: </p>
354
355<pre>/system/bin/...</pre>
356
357<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>
358
359<p>To issue a single command without entering a remote shell, use the <code>shell</code> command like this: </p>
360
361 <pre>adb [-d|-e|-s {&lt;serialNumber&gt;}] shell &lt;shellCommand&gt;</pre>
362
363<p>To drop into a remote shell on a emulator/device instance, use the <code>shell</code> command like this:</p>
364
365 <pre>adb [-d|-e|-s {&lt;serialNumber&gt;}] shell</pre>
366
367<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>
368
369<p>The sections below provide more information about shell commands that you can use.</p>
370
371<a name="sqlite" id="sqlite"></a>
372
373<h3>Examining sqlite3 Databases from a Remote Shell</h3>
374
375<p>From an adb remote shell, you can use the
376<a href="http://www.sqlite.org/sqlite.html">sqlite3</a> command-line program to
377manage SQLite databases created by Android applications. The
378<code>sqlite3</code> tool includes many useful commands, such as
379<code>.dump</code> to print out the contents of a table and
380<code>.schema</code> to print the SQL CREATE statement for an existing table.
381The tool also gives you the ability to execute SQLite commands on the fly.</p>
382
383<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>
384
385<p>Here's an example: </p>
386
387<pre>$ adb -s emulator-5554 shell
388# sqlite3 /data/data/com.example.google.rss.rssexample/databases/rssitems.db
389SQLite version 3.3.12
390Enter &quot;.help&quot; for instructions
391<em>.... enter commands, then quit...</em>
392sqlite&gt; .exit </pre>
393
394<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>.
395
396
397<a name="monkey"></a>
398
399<h3>UI/Application Exerciser Monkey</h3>
400
401<p>The Monkey is a program that runs on your emulator or device and generates pseudo-random
402streams of user events such as clicks, touches, or gestures, as well as a number of system-level
403events. You can use the Monkey to stress-test applications that you are developing,
404in a random yet repeatable manner.</p>
405
406<p>The simplest way to use the monkey is with the following command, which will launch your
407application and send 500 pseudo-random events to it.</p>
408
409<pre>$ adb shell monkey -v -p your.package.name 500</pre>
410
411<p>For more information about command options for Monkey, see the complete
412<a href="{@docRoot}guide/developing/tools/monkey.html" title="monkey">UI/Application Exerciser Monkey</a> documentation page.</p>
413
414
415<a name="othershellcommands"></a>
416
417<h3>Other Shell Commands</h3>
418
419<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>
420
421<pre>adb shell ls /system/bin</pre>
422
423<p>Help is available for most of the commands. </p>
424
425<table>
426<tr>
427 <th>Shell Command</th>
428 <th>Description</th>
429 <th>Comments</th>
430</tr>
431
432<tr>
433<td><code>dumpsys</code></td>
434<td>Dumps system data to the screen.</td>
Robert Ly293b8502011-01-05 00:34:26 -0800435<td rowspan=4">The <a href="{@docRoot}guide/developing/debugging/ddms.html">Dalvik Debug Monitor Server</a>
436(DDMS) tool offers integrated debug environment that you may find easier to use.</td>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800437</tr>
438
439<tr>
440<td><code>dumpstate</code></td>
441<td>Dumps state to a file.</td>
442</tr>
443
444<tr>
445<td><code>logcat&nbsp;[&lt;option&gt;]...&nbsp;[&lt;filter-spec&gt;]...</code></td>
446<td>Enables radio logging and prints output to the screen. </td>
447</tr>
448
449<tr>
450<td><code>dmesg</code></td>
451<td>Prints kernel debugging messages to the screen. </td>
452</tr>
453
454<tr>
455<td><code>start</code></td>
456<td>Starts (restarts) an emulator/device instance.</td>
457<td>&nbsp;</td>
458</tr>
459
460<tr>
461<td><code>stop</code></td>
462<td>Stops execution of an emulator/device instance.</td>
463<td>&nbsp;</td>
464</tr>
465
466</table>
467
468<a name="logcat"></a>
469
470<h2>Enabling logcat Logging</h2>
471
472<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>
473
474<a name="usinglogcat"></a>
475
476<h3>Using logcat Commands</h3>
477
478<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>
479
480<pre>[adb] logcat [&lt;option&gt;] ... [&lt;filter-spec&gt;] ...</pre>
481
482<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>
483
484<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>
485
486<pre>$ adb logcat</pre>
487
488<p>and from a remote adb shell you use</p>
489
490<pre># logcat</pre>
491
492<a name="filteringoutput"></a>
493
494<h3>Filtering Log Output</h3>
495
496<p>Every Android log message has a <em>tag</em> and a <em>priority</em> associated with it. </p>
497
498<ul>
499<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>
500
501<li>The priority is one of the following character values, ordered from lowest to highest priority:</li>
502
503<ul>
504 <li><code>V</code> &mdash; Verbose (lowest priority)</li>
505 <li><code>D</code> &mdash; Debug</li>
Robert Lya704daa2011-07-13 14:25:52 -0700506 <li><code>I</code> &mdash; Info (default priority)</li>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800507 <li><code>W</code> &mdash; Warning</li>
508 <li><code>E</code> &mdash; Error</li>
509 <li><code>F</code> &mdash; Fatal</li>
510 <li><code>S</code> &mdash; Silent (highest priority, on which nothing is ever printed)</li>
511</ul>
512</ul>
513
514<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
515of each message, given as <code>&lt;priority&gt;/&lt;tag&gt;</code>. </p>
516
517<p>Here's an example of logcat output that shows that the message relates to priority level "I" and tag "ActivityManager":</p>
518
519<pre>I/ActivityManager( 585): Starting activity: Intent { action=android.intent.action...}</pre>
520
521<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>
522
Robert Lya704daa2011-07-13 14:25:52 -0700523<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>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800524
525<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>
526
527<pre>adb logcat ActivityManager:I MyApp:D *:S</pre>
528
529<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>
530
531<p>The following filter expression displays all log messages with priority level "warning" and higher, on all tags:</p>
532
533<pre>adb logcat *:W</pre>
534
535<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>
536
537<pre>export ANDROID_LOG_TAGS="ActivityManager:I MyApp:D *:S"</pre>
538
539<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>
540
541
542<a name="outputformat"></a>
543
544<h3>Controlling Log Output Format</h3>
545
546<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>
547
548<ul>
Christopher Tate1df51c62012-01-03 14:03:06 -0800549 <li><code>brief</code> &mdash; Display priority/tag and the PID of process issuing the message (the default format).</li>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800550 <li><code>process</code> &mdash; Display PID only.</li>
551 <li><code>tag</code> &mdash; Display the priority/tag only. </li>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800552 <li><code>raw</code> &mdash; Display the raw log message, with no other metadata fields.</li>
Christopher Tate1df51c62012-01-03 14:03:06 -0800553 <li><code>time</code> &mdash; Display the date, invocation time, priority/tag, and PID of the process issuing the message.</li>
554 <li><code>threadtime</code> &mdash; Display the date, invocation time, priority, tag, and the PID and TID of the thread issuing the message.</li>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800555 <li><code>long</code> &mdash; Display all metadata fields and separate messages with a blank lines.</li>
556</ul>
557
558<p>When starting <code>logcat</code>, you can specify the output format you want by using the <code>-v</code> option:</p>
559
560<pre>[adb] logcat [-v &lt;format&gt;]</pre>
561
562<p>Here's an example that shows how to generate messages in <code>thread</code> output format: </p>
563
564<pre>adb logcat -v thread</pre>
565
566<p>Note that you can only specify one output format with the <code>-v</code> option. </p>
567
568<a name="alternativebuffers"></a>
569
570<h3>Viewing Alternative Log Buffers </h3>
571
572<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>
573
574<ul>
575<li><code>radio</code> &mdash; View the buffer that contains radio/telephony related messages.</li>
576<li><code>events</code> &mdash; View the buffer containing events-related messages.</li>
577<li><code>main</code> &mdash; View the main log buffer (default)</li>
578</ul>
579
580<p>The usage of the <code>-b</code> option is:</p>
581
582<pre>[adb] logcat [-b &lt;buffer&gt;]</pre>
583
584<p>Here's an example of how to view a log buffer containing radio and telephony messages: </p>
585
586<pre>adb logcat -b radio</b></pre>
587
588<a name="stdout"></a>
589
590<h3>Viewing stdout and stderr</h3>
591
592<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
593processes 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>
594
595<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>
596
597<pre>$ adb shell stop
598$ adb shell setprop log.redirect-stdio true
599$ adb shell start</pre>
600
601<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>
602on the device.</p>
603
604<a name="logcatoptions"></a>
605
606<h3>Listing of logcat Command Options</h3>
607
608<table>
609<tr>
610 <th>Option</th>
611 <th>Description</th>
612</tr>
613
614<tr>
615<td><code>-b&nbsp;&lt;buffer&gt;</code></td>
616<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>
617</tr>
618
619<tr>
620<td><code>-c</code></td>
621<td>Clears (flushes) the entire log and exits. </td>
622</tr>
623
624<tr>
625<td><code>-d</code></td>
626<td>Dumps the log to the screen and exits.</td>
627</tr>
628
629<tr>
630<td><code>-f&nbsp;&lt;filename&gt;</code></td>
631<td>Writes log message output to <code>&lt;filename&gt;</code>. The default is <code>stdout</code>.</td>
632</tr>
633
634<tr>
635<td><code>-g</code></td>
636<td>Prints the size of the specified log buffer and exits. </td>
637</tr>
638
639<tr>
640<td><code>-n&nbsp;&lt;count&gt;</code></td>
641<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>
642</tr>
643
644<tr>
645<td><code>-r&nbsp;&lt;kbytes&gt;</code></td>
646<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>
647</tr>
648
649<tr>
650<td><code>-s</code></td>
651<td>Sets the default filter spec to silent. </td>
652</tr>
653
654<tr>
655<td><code>-v&nbsp;&lt;format&gt;</code></td>
656<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>
657</tr>
658
659</table>
660
661<a name="stopping"></a>
662
663<h2>Stopping the adb Server</h2>
664
665<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>
666
667<p>To stop the adb server, use the <code>kill-server</code>. You can then restart the server by issuing any adb command. </p>
668
669