Loading core/java/com/android/server/backup/AccountManagerBackupHelper.java +2 −2 Original line number Diff line number Diff line Loading @@ -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]; Loading @@ -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); } } } core/java/com/android/server/backup/NotificationBackupHelper.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; } } Loading @@ -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); } } } Loading core/java/com/android/server/backup/PermissionBackupHelper.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; } Loading @@ -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); } } } core/java/com/android/server/backup/PreferredActivityBackupHelper.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; } Loading Loading @@ -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); } } } core/java/com/android/server/backup/SliceBackupHelper.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; } } Loading @@ -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); } } } Loading Loading
core/java/com/android/server/backup/AccountManagerBackupHelper.java +2 −2 Original line number Diff line number Diff line Loading @@ -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]; Loading @@ -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); } } }
core/java/com/android/server/backup/NotificationBackupHelper.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; } } Loading @@ -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); } } } Loading
core/java/com/android/server/backup/PermissionBackupHelper.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; } Loading @@ -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); } } }
core/java/com/android/server/backup/PreferredActivityBackupHelper.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; } Loading Loading @@ -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); } } }
core/java/com/android/server/backup/SliceBackupHelper.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; } } Loading @@ -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); } } } Loading