Merge pull request #28753 from overleaf/em-debug-revert-file

Log debug info when file not found while reverting

GitOrigin-RevId: 944db8d61a68612325a733151616ff37298dc699
This commit is contained in:
Eric Mc Sween
2025-09-29 15:41:29 -04:00
committed by Copybot
parent 56c1d38d47
commit 414fc3cdb3

View File

@@ -136,7 +136,11 @@ const RestoreManager = {
const snapshotFile = projectSnapshotAtVersion.getFile(pathname)
if (!snapshotFile) {
throw new OError('file not found in snapshot', { pathname })
throw new OError('file not found in snapshot', {
projectId,
version,
pathname,
})
}
let hadDeletedRootFile = false