summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCuihtlauac ALVARADO <cuihtlauac.alvarado@orange.com>2015-06-02 17:23:19 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-06-02 17:23:19 +0000
commit520e941b6cdfbfff5d957d3111291264b9c80840 (patch)
treed83491fba05ea7e7f2205caa483f01d4f411b16b
parentcbdf356d0e3ff75642e3cacfe52734739971d165 (diff)
parentbde7f03b500d003a377b54166aeb7bb6b799a430 (diff)
downloadandroid_packages_apps_Stk-520e941b6cdfbfff5d957d3111291264b9c80840.tar.gz
android_packages_apps_Stk-520e941b6cdfbfff5d957d3111291264b9c80840.tar.bz2
android_packages_apps_Stk-520e941b6cdfbfff5d957d3111291264b9c80840.zip
am bde7f03b: Remove user input from logcat
* commit 'bde7f03b500d003a377b54166aeb7bb6b799a430': Remove user input from logcat
-rw-r--r--src/com/android/stk/StkAppService.java2
-rw-r--r--src/com/android/stk/StkInputActivity.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/stk/StkAppService.java b/src/com/android/stk/StkAppService.java
index 1714d6d..937acec 100644
--- a/src/com/android/stk/StkAppService.java
+++ b/src/com/android/stk/StkAppService.java
@@ -296,7 +296,7 @@ public class StkAppService extends Service implements Runnable {
if (op != OP_BOOT_COMPLETED) {
slotId = args.getInt(SLOT_ID);
}
- CatLog.d(LOG_TAG, "onStart sim id: " + slotId + ", op: " + op + ", " + args);
+ CatLog.d(LOG_TAG, "onStart sim id: " + slotId + ", op: " + op + ", *****");
if ((slotId >= 0 && slotId < mSimCount) && mStkService[slotId] == null) {
mStkService[slotId] = CatService.getInstance(slotId);
if (mStkService[slotId] == null) {
diff --git a/src/com/android/stk/StkInputActivity.java b/src/com/android/stk/StkInputActivity.java
index 69223c3..39c574d 100644
--- a/src/com/android/stk/StkInputActivity.java
+++ b/src/com/android/stk/StkInputActivity.java
@@ -241,8 +241,8 @@ public class StkInputActivity extends Activity implements View.OnClickListener,
return;
}
- CatLog.d(LOG_TAG, "sendResponse resID[" + resId + "] input[" + input +
- "] help[" + help + "]");
+ CatLog.d(LOG_TAG, "sendResponse resID[" + resId + "] input[*****] help["
+ + help + "]");
mIsResponseSent = true;
Bundle args = new Bundle();
args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);