Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 85eedb7b authored by Robert Ly's avatar Robert Ly
Browse files

cherrypick from hc-mr2 Change-Id: I00903a5b3a3d91c0751334e3314acf19a3d498d4

Change-Id: I19ed647790ed4781762f09897ec76a4348059fb2
parent 070ce94b
Loading
Loading
Loading
Loading
+20 −17
Original line number Diff line number Diff line
@@ -165,6 +165,16 @@ logcat -b radio
<dt><strong>Use debugging helper classes</strong></dt>
<dd>Android provides debug helper classes such as {@link android.util.Log
    util.Log} and {@link android.os.Debug} for your convenience. </dd>

<dt><strong>Garbage collection</strong></dt>
<dd>
The debugger and garbage collector are currently loosely integrated. The VM guarantees that any
object the debugger is aware of is not garbage collected until after the debugger disconnects.
This can result in a buildup of objects over time while the debugger is connected. For example,
if the debugger sees a running thread, the associated {@link java.lang.Thread} object is not
garbage collected even after the thread terminates.
</dd>

</dl>

<p>See the <a href="{@docRoot}resources/faq/troubleshooting.html">Troubleshooting</a> document
@@ -176,10 +186,3 @@ for answers to some common developing and debugging issues.</p>