Remove instance of IP logging in NetworkMonitorAutoDetect

Bug: b/152283155
Change-Id: I75ce0f2d7107a2c25f5df73a75b505051163399b
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/185183
Reviewed-by: Sami Kalliomäki <sakal@webrtc.org>
Reviewed-by: Jonas Oreland <jonaso@webrtc.org>
Commit-Queue: Paulina Hensman <phensman@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#32183}
This commit is contained in:
Paulina Hensman
2020-09-24 10:19:42 +02:00
committed by Commit Bot
parent afef7a74a7
commit 3060d33cca

View File

@ -112,7 +112,10 @@ public class NetworkMonitorAutoDetect extends BroadcastReceiver implements Netwo
public void onLinkPropertiesChanged(Network network, LinkProperties linkProperties) {
// A link property change may indicate the IP address changes.
// so forward the new NetworkInformation to the observer.
Logging.d(TAG, "link properties changed: " + linkProperties.toString());
//
// linkProperties.toString() has PII that cannot be redacted
// very reliably, so do not include in log.
Logging.d(TAG, "link properties changed");
onNetworkChanged(network);
}