diff options
author | Selim Gurun <sgurun@google.com> | 2011-10-11 14:30:26 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-10-11 14:30:26 -0700 |
commit | 26463a428892782dae24436f255c0a0ebcc1f44b (patch) | |
tree | f34340acbdaa589921cb9c68aa6f1bf936dcc467 /src/com/android/browser/Tab.java | |
parent | 0366feb9b4133e500c5ef80fa40586b98d9c9186 (diff) | |
parent | 3da06b83df87c0dc4fd173b86c60fdccd3174cd6 (diff) | |
download | packages_apps_Browser-26463a428892782dae24436f255c0a0ebcc1f44b.zip packages_apps_Browser-26463a428892782dae24436f255c0a0ebcc1f44b.tar.gz packages_apps_Browser-26463a428892782dae24436f255c0a0ebcc1f44b.tar.bz2 |
Merge "fix reduce log spam on errors"
Diffstat (limited to 'src/com/android/browser/Tab.java')
-rw-r--r-- | src/com/android/browser/Tab.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/android/browser/Tab.java b/src/com/android/browser/Tab.java index 24b1555..8a3febe 100644 --- a/src/com/android/browser/Tab.java +++ b/src/com/android/browser/Tab.java @@ -685,12 +685,12 @@ class Tab implements PictureListener { errorCode != WebViewClient.ERROR_UNSUPPORTED_SCHEME && errorCode != WebViewClient.ERROR_FILE) { queueError(errorCode, description); - } - // Don't log URLs when in private browsing mode - if (!isPrivateBrowsingEnabled()) { - Log.e(LOGTAG, "onReceivedError " + errorCode + " " + failingUrl + // Don't log URLs when in private browsing mode + if (!isPrivateBrowsingEnabled()) { + Log.e(LOGTAG, "onReceivedError " + errorCode + " " + failingUrl + " " + description); + } } } |