Skip to content

Commit

Permalink
DOP-4401 testing logger
Browse files Browse the repository at this point in the history
  • Loading branch information
anabellabuckvar committed Feb 29, 2024
1 parent fa2320f commit 4897ff3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/job/jobHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@ export abstract class JobHandler {
this.currJob.payload.pathPrefix = pathPrefix;
const mutPrefix = pathPrefix.split(`/${server_user}`)[0];
if (this.currJob?.payload?.newHead && this.currJob?.title !== 'Merge to main') {
this._logger.save(this.currJob?.payload?.newHead, `Testing7 Commit Hash: ${this.currJob?.payload?.newHead}`);
this._logger.save(this.currJob._id, `Testing7 Commit Hash: ${this.currJob?.payload?.newHead}`);
}
this._logger.save(mutPrefix.split('/')[0], `Testing7 Commit Hash: ${this.currJob?.payload?.newHead}`);
this._logger.save(mutPrefix.split('/')[0], 'MUT PREFIX9: ' + mutPrefix.split('/')[0]) + mutPrefix.split('/')[1];
this._logger.save(this.currJob._id, `Testing7 Commit Hash: ${this.currJob?.payload?.newHead}`);
this._logger.save(this.currJob._id, 'MUT PREFIX9: ' + mutPrefix.split('/')[0]) + mutPrefix.split('/')[1];
this.currJob.payload.mutPrefix = mutPrefix;
}
}
Expand Down

0 comments on commit 4897ff3

Please sign in to comment.