Skip to content

Commit

Permalink
Print newlines in logger
Browse files Browse the repository at this point in the history
  • Loading branch information
surilindur committed May 14, 2024
1 parent d88baa0 commit 7a47959
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/experiment-solidbench/lib/ExperimentSolidBench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export class ExperimentSolidBench implements Experiment {
warmup: this.queryRunnerWarmupRounds,
requestDelay: this.queryRunnerRequestDelay,
availabilityCheckTimeout: this.queryRunnerEndpointAvailabilityCheckTimeout,
logger: (message: string) => process.stderr.write(message),
logger: (message: string) => process.stderr.write(`${message}\n`),
additionalUrlParams: new URLSearchParams(this.queryRunnerUrlParams),
timeout: this.queryTimeoutFallback,
}).run({
Expand Down
2 changes: 1 addition & 1 deletion packages/experiment-watdiv/lib/ExperimentWatDiv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export class ExperimentWatDiv implements Experiment {
warmup: this.queryRunnerWarmupRounds,
requestDelay: this.queryRunnerRequestDelay,
availabilityCheckTimeout: this.queryRunnerEndpointAvailabilityCheckTimeout,
logger: (message: string) => process.stderr.write(message),
logger: (message: string) => process.stderr.write(`${message}\n`),
additionalUrlParams: new URLSearchParams(this.queryRunnerUrlParams),
timeout: this.queryTimeoutFallback,
}).run({
Expand Down

0 comments on commit 7a47959

Please sign in to comment.