Skip to content

Commit

Permalink
chore: remove keepLog option for now
Browse files Browse the repository at this point in the history
  • Loading branch information
roggervalf committed May 17, 2024
1 parent 04e648b commit fe5109e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/job.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,8 @@ Job.prototype.retry = function() {
* @params logRow: string String with log data to be logged.
*
*/
Job.prototype.log = function(logRow, keepLogs = undefined) {
return scripts.addLog(this.queue, this.id, logRow, keepLogs);
Job.prototype.log = function(logRow) {
return scripts.addLog(this.queue, this.id, logRow);
};

Job.prototype.isCompleted = function() {
Expand Down

0 comments on commit fe5109e

Please sign in to comment.