summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Scott Main <smain@google.com> 2017-06-29 16:19:20 +0000
committer android-build-merger <android-build-merger@google.com> 2017-06-29 16:19:20 +0000
commit41fc46aaa98c277b4a1b01fdea7962d7fed848f6 (patch)
tree53634f19c93bd00b5c3a9a84ba3ab2fdcbf1e56a
parent693179307c7ac656f5afd877d57532b334ac6f2e (diff)
parentea6fea4d5d0a619302361e4cc2a053e0f748ca44 (diff)
Merge "add links to Log class summary for methods and logcat doc" into oc-dev
am: ea6fea4d5d Change-Id: I322405e6712ef9affb57d86e43b852e19cdc7f88
-rw-r--r--core/java/android/util/Log.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/java/android/util/Log.java b/core/java/android/util/Log.java
index 951aa8df9ea3..8691136dfedc 100644
--- a/core/java/android/util/Log.java
+++ b/core/java/android/util/Log.java
@@ -30,8 +30,9 @@ import java.net.UnknownHostException;
/**
* API for sending log output.
*
- * <p>Generally, use the Log.v() Log.d() Log.i() Log.w() and Log.e()
- * methods.
+ * <p>Generally, you should use the {@link #v Log.v()}, {@link #d Log.d()},
+ * {@link #i Log.i()}, {@link #w Log.w()}, and {@link #e Log.e()} methods to write logs.
+ * You can then <a href="{@docRoot}studio/debug/am-logcat.html">view the logs in logcat</a>.
*
* <p>The order in terms of verbosity, from least to most is
* ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should never be compiled