Merge "Don't log all instant app resolutions" into oc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
3ef0b8260f
@@ -121,8 +121,11 @@ public abstract class InstantAppResolver {
|
|||||||
resolutionStatus = RESOLUTION_FAILURE;
|
resolutionStatus = RESOLUTION_FAILURE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
logMetrics(ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE, startTime, token,
|
// Only log successful instant application resolution
|
||||||
resolutionStatus);
|
if (resolutionStatus == RESOLUTION_SUCCESS) {
|
||||||
|
logMetrics(ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE, startTime, token,
|
||||||
|
resolutionStatus);
|
||||||
|
}
|
||||||
if (DEBUG_EPHEMERAL && resolveInfo == null) {
|
if (DEBUG_EPHEMERAL && resolveInfo == null) {
|
||||||
if (resolutionStatus == RESOLUTION_BIND_TIMEOUT) {
|
if (resolutionStatus == RESOLUTION_BIND_TIMEOUT) {
|
||||||
Log.d(TAG, "[" + token + "] Phase1; bind timed out");
|
Log.d(TAG, "[" + token + "] Phase1; bind timed out");
|
||||||
|
|||||||
Reference in New Issue
Block a user