From 0c49328380fbee8cf5e1ec3e9ceec57e26094759 Mon Sep 17 00:00:00 2001 From: Seung Park Date: Tue, 25 Jun 2024 08:54:50 -0400 Subject: [PATCH] fix log --- src/job/jobHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/job/jobHandler.ts b/src/job/jobHandler.ts index 394432efa..3fb1848ba 100644 --- a/src/job/jobHandler.ts +++ b/src/job/jobHandler.ts @@ -585,7 +585,7 @@ export abstract class JobHandler { let buildStepOutput: CliCommandResponse; - this.logger.save(job._id, `calling nextgenparse with env flag ${process.env['SNOOTY_PARSER_VERSION']}`); + this._logger.save(job._id, `calling nextgenparse with env flag ${process.env['SNOOTY_PARSER_VERSION']}`); const parseFunc = async () => nextGenParse({ job, patchId }); buildStepOutput = await this.wrapWithBenchmarks(parseFunc, 'parseExe'); this.logger.save(job._id, 'Repo Parsing Complete');