Skip to content

Commit

Permalink
Add info logger on terminal send input error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabricio-ESP committed Nov 11, 2024
1 parent ea36ccb commit 0dc4764
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
run: |
choco install ninja -y
- name: Run test script (Windows)
- name: Run IDF installation and post install test script (Windows)
if: runner.os == 'Windows'
run: |
$env:LOG_TO_FILE="true"
Expand Down
2 changes: 1 addition & 1 deletion tests/classes/CLITestRunner.class.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class InteractiveCLITestRunner {
try {
this.process.write(input);
} catch (error) {
logger.debug(`Error sending input:>>>>${error}<<<<<<<<<<<`);
logger.info(`Error sending input:>>>>${error}<<<<<<<<<<<`);
this.error = error;
this.exited = true;
}
Expand Down

0 comments on commit 0dc4764

Please sign in to comment.