Merge pull request #30784 from overleaf/revert-30675-ar-jpa-log-missing-history-id-docupdater

Revert "[document-updater] add additional logging when doc is missing projectHistoryId"

GitOrigin-RevId: 725508a8f88ad3354b8b4644f4ee1e91efbecde2
This commit is contained in:
Andrew Rumble
2026-01-15 11:15:41 +00:00
committed by Copybot
parent 23255fe264
commit a071cd74bc
2 changed files with 0 additions and 14 deletions

View File

@@ -102,13 +102,6 @@ function getDoc(projectId, docId, options = {}, _callback) {
body.ranges = {}
}
if (!body.projectHistoryId) {
logger.warn(
{ projectId, docId },
'projectHistoryId not found for doc from web'
)
}
callback(
null,
body.lines,

View File

@@ -282,13 +282,6 @@ const RedisManager = {
})
}
if (!projectHistoryId) {
logger.warn(
{ docId, projectId },
'projectHistoryId not found for doc in Redis'
)
}
return {
lines: docLines,
version,