From 4cdb11fcbd6f701b61b491358aade738d48cdd85 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Mon, 8 Jan 2024 16:40:12 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9D=8C=20Cleaned=20the=20console.logs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/jobqueue.service.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/services/jobqueue.service.ts b/services/jobqueue.service.ts index 190b330..5e1cc08 100644 --- a/services/jobqueue.service.ts +++ b/services/jobqueue.service.ts @@ -57,7 +57,6 @@ export default class JobQueueService extends Service { handler: async ( ctx: Context<{ queueName: string; description: string }> ) => { - console.log(ctx.params); const { queueName, description } = ctx.params; // Enqueue the job const job = await this.localQueue( @@ -85,7 +84,6 @@ export default class JobQueueService extends Service { console.log( `Recieved Job ID ${ctx.locals.job.id}, processing...` ); - console.log(ctx.params); // 1. De-structure the job params const { fileObject } = ctx.locals.job.data.params; @@ -315,7 +313,6 @@ export default class JobQueueService extends Service { filePath, options ); - if (Array.isArray(result) && result.length !== 0) { // Get the containing directory of the uncompressed archive const directoryPath = path.dirname(result[0]);