Merge pull request #7906 from overleaf/em-downgrade-logs

Downgrade all INFO logs to DEBUG

GitOrigin-RevId: 05ed582ef0721fcada059f0ad158565f50feca27
This commit is contained in:
Eric Mc Sween
2022-05-17 08:05:26 +00:00
committed by Copybot
parent efcb06f0df
commit e0d91eaa26
116 changed files with 487 additions and 423 deletions
@@ -70,7 +70,7 @@ async function archiveDocById(projectId, docId) {
}
async function archiveDoc(projectId, doc) {
logger.log(
logger.debug(
{ project_id: projectId, doc_id: doc._id },
'sending doc to persistor'
)
@@ -154,7 +154,7 @@ async function getDoc(projectId, docId) {
// get the doc and unarchive it to mongo
async function unarchiveDoc(projectId, docId) {
logger.log({ projectId, docId }, 'getting doc from persistor')
logger.debug({ projectId, docId }, 'getting doc from persistor')
const mongoDoc = await MongoManager.findDoc(projectId, docId, {
inS3: 1,
rev: 1,