Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2f8a0f1 authored by Al Sutton's avatar Al Sutton
Browse files

Lower log level for errors which are limited to the backup of a single package

Change-Id: I6b086312496e152f613154d2942d1ec28ef64625
Fixes: 75718456
Test: Compilation will fail if the method being used now isn't
available.
parent 0ee4e328
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -516,7 +516,7 @@ public class PerformFullTransportBackupTask extends FullBackupTask implements Ba
                    }

                    if (backupPackageStatus != BackupTransport.TRANSPORT_OK) {
                        Slog.e(TAG, "Error " + backupPackageStatus + " backing up "
                        Slog.w(TAG, "Error " + backupPackageStatus + " backing up "
                                + packageName);
                    }

@@ -857,7 +857,8 @@ public class PerformFullTransportBackupTask extends FullBackupTask implements Ba
                    }
                }
            } catch (Exception e) {
                Slog.e(TAG, "Exception during full package backup of " + mTarget.packageName);
                Slog.w(TAG, "Exception during full package backup of " + mTarget.packageName,
                        e);
            } finally {
                unregisterTask();
                mBackupLatch.countDown();