mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-06-09 04:42:20 +02:00
Improved logging during setup (#113)
* Improved error output during setup * Change from debug to info for normal output * Apply suggestions from code review Co-authored-by: Brian Cristante <33549821+brcrista@users.noreply.github.com> Co-authored-by: Brian Cristante <33549821+brcrista@users.noreply.github.com>
This commit is contained in:
parent
654aa00a6e
commit
7a69c2bc7d
3 changed files with 12 additions and 3 deletions
5
dist/index.js
vendored
5
dist/index.js
vendored
|
@ -6355,7 +6355,10 @@ function installPython(workingDirectory) {
|
|||
silent: true,
|
||||
listeners: {
|
||||
stdout: (data) => {
|
||||
core.debug(data.toString().trim());
|
||||
core.info(data.toString().trim());
|
||||
},
|
||||
stderr: (data) => {
|
||||
core.error(data.toString().trim());
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue