Merge pull request #7906 from overleaf/em-downgrade-logs
Downgrade all INFO logs to DEBUG GitOrigin-RevId: 05ed582ef0721fcada059f0ad158565f50feca27
This commit is contained in:
@@ -219,7 +219,7 @@ const ArchiveManager = {
|
||||
}
|
||||
|
||||
const timer = new metrics.Timer('unzipDirectory')
|
||||
logger.log({ source, destination }, 'unzipping file')
|
||||
logger.debug({ source, destination }, 'unzipping file')
|
||||
|
||||
return ArchiveManager._extractZipFiles(
|
||||
source,
|
||||
|
||||
@@ -86,7 +86,7 @@ async function addFolderContents(
|
||||
replace
|
||||
) {
|
||||
if (!(await _isSafeOnFileSystem(folderPath))) {
|
||||
logger.log(
|
||||
logger.debug(
|
||||
{ userId, projectId, parentFolderId, folderPath },
|
||||
'add folder contents is from symlink, stopping insert'
|
||||
)
|
||||
@@ -110,7 +110,7 @@ async function addFolderContents(
|
||||
|
||||
async function addEntity(userId, projectId, folderId, name, fsPath, replace) {
|
||||
if (!(await _isSafeOnFileSystem(fsPath))) {
|
||||
logger.log(
|
||||
logger.debug(
|
||||
{ userId, projectId, folderId, fsPath },
|
||||
'add entry is from symlink, stopping insert'
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user