Skip to content

Commit

Permalink
Remove dev characters from logs
Browse files Browse the repository at this point in the history
  • Loading branch information
patuwwy committed Mar 6, 2024
1 parent a05c64f commit cc146bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/adapters/src/process-instance-adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class ProcessInstanceAdapter implements
}

setRunner(system: Record<string, string>): void {
this.logger.info("--------- Setting system from runner", system);
this.logger.info("Setting system from runner", system);
this.processPID = parseInt(system.processPID, 10);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/runner/src/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export class Runner<X extends AppConfig> implements IComponent {

if (process.env.RUNNER_LOG_FILE) {
this.logFile ||= createWriteStream(process.env.RUNNER_LOG_FILE);
this.logFile.write("\n\n------------- \n\n");
this.logFile.write("\n\n");
this.logger.addOutput(this.logFile);
}

Expand Down

0 comments on commit cc146bf

Please sign in to comment.