Skip to content

Commit

Permalink
fix(local): print log as string
Browse files Browse the repository at this point in the history
* ci(test): only run on PR
  • Loading branch information
jost-s authored Jun 22, 2022
1 parent ea1ee34 commit 25afa3d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Run tests

on:
push:
branches: [ develop, main ]
pull_request:
branches: [ develop, main ]

Expand Down
2 changes: 1 addition & 1 deletion ts/src/local/conductor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ export class Conductor implements IConductor {
resolve();
}
} else {
logger.debug(data);
logger.debug(data.toString());
}
});

Expand Down

0 comments on commit 25afa3d

Please sign in to comment.