Skip to content

Commit

Permalink
Fix broken debug extension
Browse files Browse the repository at this point in the history
  • Loading branch information
jpwilliams committed Jul 2, 2024
1 parent 5f1cc02 commit d367643
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class InngestExecution {
protected debug: Debugger;

constructor(protected options: InngestExecutionOptions) {
this.debug = Debug(debugPrefix).extend(this.options.runId);
this.debug = Debug(`${debugPrefix}:${this.options.runId}`);
}
}

Expand Down

0 comments on commit d367643

Please sign in to comment.