Merge "Improve exception logging for system backup/restore" into sc-dev am: 8f589c02c6

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15123973

Change-Id: I6180db92be6ef2bb99b8b8c80fe22758af0526c8
This commit is contained in:
TreeHugger Robot
2021-06-28 19:24:15 +00:00
committed by Automerger Merge Worker
5 changed files with 10 additions and 10 deletions

View File

@@ -56,7 +56,7 @@ public class AccountManagerBackupHelper extends BlobBackupHelper {
}
}
} catch (Exception e) {
Slog.e(TAG, "Unable to store payload " + key);
Slog.e(TAG, "Unable to store payload " + key, e);
}
return new byte[0];
@@ -79,7 +79,7 @@ public class AccountManagerBackupHelper extends BlobBackupHelper {
}
}
} catch (Exception e) {
Slog.w(TAG, "Unable to restore key " + key);
Slog.e(TAG, "Unable to restore key " + key, e);
}
}
}

View File

@@ -49,7 +49,7 @@ public class NotificationBackupHelper extends BlobBackupHelper {
newPayload = nm.getBackupPayload(mUserId);
} catch (Exception e) {
// Treat as no data
Slog.e(TAG, "Couldn't communicate with notification manager");
Slog.e(TAG, "Couldn't communicate with notification manager", e);
newPayload = null;
}
}
@@ -68,7 +68,7 @@ public class NotificationBackupHelper extends BlobBackupHelper {
ServiceManager.getService("notification"));
nm.applyRestore(payload, mUserId);
} catch (Exception e) {
Slog.e(TAG, "Couldn't communicate with notification manager");
Slog.e(TAG, "Couldn't communicate with notification manager", e);
}
}
}

View File

@@ -59,7 +59,7 @@ public class PermissionBackupHelper extends BlobBackupHelper {
Slog.w(TAG, "Unexpected backup key " + key);
}
} catch (Exception e) {
Slog.e(TAG, "Unable to store payload " + key);
Slog.e(TAG, "Unable to store payload " + key, e);
}
return null;
}
@@ -79,7 +79,7 @@ public class PermissionBackupHelper extends BlobBackupHelper {
Slog.w(TAG, "Unexpected restore key " + key);
}
} catch (Exception e) {
Slog.w(TAG, "Unable to restore key " + key);
Slog.e(TAG, "Unable to restore key " + key, e);
}
}
}

View File

@@ -95,7 +95,7 @@ public class PreferredActivityBackupHelper extends BlobBackupHelper {
Slog.w(TAG, "Unexpected backup key " + key);
}
} catch (Exception e) {
Slog.e(TAG, "Unable to store payload " + key);
Slog.e(TAG, "Unable to store payload " + key, e);
}
return null;
}
@@ -124,7 +124,7 @@ public class PreferredActivityBackupHelper extends BlobBackupHelper {
Slog.w(TAG, "Unexpected restore key " + key);
}
} catch (Exception e) {
Slog.w(TAG, "Unable to restore key " + key);
Slog.e(TAG, "Unable to restore key " + key, e);
}
}
}

View File

@@ -48,7 +48,7 @@ public class SliceBackupHelper extends BlobBackupHelper {
newPayload = sm.getBackupPayload(UserHandle.USER_SYSTEM);
} catch (Exception e) {
// Treat as no data
Slog.e(TAG, "Couldn't communicate with slice manager");
Slog.e(TAG, "Couldn't communicate with slice manager", e);
newPayload = null;
}
}
@@ -66,7 +66,7 @@ public class SliceBackupHelper extends BlobBackupHelper {
// TODO: http://b/22388012
sm.applyRestore(payload, UserHandle.USER_SYSTEM);
} catch (Exception e) {
Slog.e(TAG, "Couldn't communicate with slice manager");
Slog.e(TAG, "Couldn't communicate with slice manager", e);
}
}
}