Merge "Fix error log message for rename(2) workaround"

This commit is contained in:
Treehugger Robot
2022-09-13 21:28:30 +00:00
committed by Gerrit Code Review

View File

@@ -7836,7 +7836,7 @@ public final class ActivityThread extends ClientTransactionHandler
Files.move(new File(oldPath).toPath(), new File(newPath).toPath(), Files.move(new File(oldPath).toPath(), new File(newPath).toPath(),
StandardCopyOption.REPLACE_EXISTING); StandardCopyOption.REPLACE_EXISTING);
} catch (IOException e2) { } catch (IOException e2) {
Log.e(TAG, "Rename recovery failed ", e); Log.e(TAG, "Rename recovery failed ", e2);
throw e; throw e;
} }
} else { } else {