diff options
author | Wink Saville <wink@google.com> | 2010-11-24 16:50:32 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-11-24 16:50:32 -0800 |
commit | b0be5d1d4a31f0ba40dc38bf9990d8935b6a5c6c (patch) | |
tree | 08b31a0a262d8f0e153906d17113d691491c31ec /services/java | |
parent | a4db01151e521e59debee147e6c7c068e718de5e (diff) | |
parent | 26f5a384d81487cc6bb80a78fb40d5e7e7ffc81e (diff) | |
download | frameworks_base-b0be5d1d4a31f0ba40dc38bf9990d8935b6a5c6c.zip frameworks_base-b0be5d1d4a31f0ba40dc38bf9990d8935b6a5c6c.tar.gz frameworks_base-b0be5d1d4a31f0ba40dc38bf9990d8935b6a5c6c.tar.bz2 |
Merge "Use apn types instead of host when sending notifications."
Diffstat (limited to 'services/java')
-rw-r--r-- | services/java/com/android/server/TelephonyRegistry.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/java/com/android/server/TelephonyRegistry.java b/services/java/com/android/server/TelephonyRegistry.java index 689b1c6..e881523 100644 --- a/services/java/com/android/server/TelephonyRegistry.java +++ b/services/java/com/android/server/TelephonyRegistry.java @@ -388,8 +388,8 @@ class TelephonyRegistry extends ITelephonyRegistry.Stub { return; } Slog.i(TAG, "notifyDataConnection: state=" + state + " isDataConnectivityPossible=" - + isDataConnectivityPossible + " reason=" + reason - + " apn=" + apn + " networkType=" + networkType); + + isDataConnectivityPossible + " reason='" + reason + + "' apn='" + apn + "' apnType=" + apnType + " networkType=" + networkType); synchronized (mRecords) { boolean modified = false; if (state == TelephonyManager.DATA_CONNECTED) { |