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

Commit 9052e72c authored by Al Sutton's avatar Al Sutton
Browse files

Add exception to log message.

This will help us identify which type of error is occuring.

Test: m -j
Bug: 150244784
Change-Id: I82ef4b52f198fd15a33637055a8b24e8cb994a2d
parent d15e9455
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -333,7 +333,7 @@ public class LocalTransport extends BackupTransport {
                try (FileOutputStream out = new FileOutputStream(element)) {
                    out.write(op.value, 0, op.value.length);
                } catch (IOException e) {
                    Log.e(TAG, "Unable to update key file " + element);
                    Log.e(TAG, "Unable to update key file " + element, e);
                    return TRANSPORT_ERROR;
                }
            }