From ade801887da959e5d34e69795f49dd0f955adb69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa=20Aubert?= Date: Mon, 7 Oct 2019 20:01:36 +0200 Subject: [PATCH] Do not log while testing --- config/environments/test.js.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/environments/test.js.example b/config/environments/test.js.example index 2f8cddf3..ccfe6ad7 100644 --- a/config/environments/test.js.example +++ b/config/environments/test.js.example @@ -59,7 +59,7 @@ module.exports.db_port = '5432'; module.exports.db_batch_port = '5432'; module.exports.finished_jobs_ttl_in_seconds = 2 * 3600; // 2 hours module.exports.batch_query_timeout = 5 * 1000; // 5 seconds in milliseconds -module.exports.batch_log_filename = 'logs/batch-queries.log'; +//module.exports.batch_log_filename = 'logs/batch-queries.log'; module.exports.copy_timeout = "'5h'"; module.exports.copy_from_max_post_size = 2 * 1024 * 1024 * 1024 // 2 GB; module.exports.copy_from_max_post_size_pretty = '2 GB'; @@ -149,7 +149,7 @@ module.exports.ratelimits = { } module.exports.validatePGEntitiesAccess = false; -module.exports.dataIngestionLogPath = 'logs/data-ingestion.log'; +//module.exports.dataIngestionLogPath = 'logs/data-ingestion.log'; module.exports.logQueries = true; module.exports.maxQueriesLogLength = 1024;