diff --git a/src/routes/test/system-test.js b/src/routes/test/system-test.js index 58a71c0e4..4617f0309 100644 --- a/src/routes/test/system-test.js +++ b/src/routes/test/system-test.js @@ -58,7 +58,7 @@ describe('System', function () { describe('logs', function () { before(function () { - console.log(paths.BOX_LOG_FILE); + // console.log(paths.BOX_LOG_FILE); fs.writeFileSync(paths.BOX_LOG_FILE, '2022-11-06T15:06:20.009Z box:apphealthmonitor app health: 0 alive / 0 dead.\n', 'utf8'); }); diff --git a/src/test/storage-provider-test.js b/src/test/storage-provider-test.js index 2dadcf610..56f4e3b9b 100644 --- a/src/test/storage-provider-test.js +++ b/src/test/storage-provider-test.js @@ -213,7 +213,7 @@ describe('Storage', function () { const source = path.join(basePath, params.CopySource.replace(/%2B/g, '+')); // Key already has prefix but no bucket ptah! const dest = path.join(bucketPathNoPrefix, params.Key); - console.log('Copying:', source, dest, path.dirname(dest)); + // console.log('Copying:', source, dest, path.dirname(dest)); await fs.promises.mkdir(path.dirname(dest), { recursive: true }); await fs.promises.copyFile(source, dest); } @@ -326,7 +326,7 @@ describe('Storage', function () { createReadStream: function() { return fs.createReadStream(getFullWritablePath(key)) .on('error', function(e){ - console.log('error createReadStream: '+key); + // console.log('error createReadStream: ' + key); if (e.code == 'ENOENT') { e.code = 404; } this.emit('error', e); });