From afa9f9fbc99ce02ce3919f136c4e74d1b8586bab Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Wed, 15 Jul 2020 18:30:20 +0200 Subject: [PATCH] Change from debug to info for normal output --- README.md | 2 +- dist/index.js | 2 +- src/install-python.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 322a6cdf..a7877f19 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ You should specify only a major and minor version if you are okay with the most Python distributions are only available for the same [environments](https://github.com/actions/virtual-environments#available-environments) that GitHub Actions hosted environments are available for. If you are using an unsupported version of Ubuntu such as `19.04` or an alternative Linux distribution such as Fedora, `setup-python` will not work. If you have a supported `self-hosted` runner and you would like to use `setup-python`, there are a few extra things you need to make sure are set up so that new versions of Python can be downloaded and configured on your runner. -If you are experience problems while configuring python on your self-hosted runner. Turn on [step debugging](https://github.com/actions/toolkit/blob/main/docs/action-debugging.md#step-debug-logs) to see addition logs. +If you are experience problems while configuring python on your `self-hosted` runner. Turn on [step debugging](https://github.com/actions/toolkit/blob/main/docs/action-debugging.md#step-debug-logs) to see addition logs. ### Windows diff --git a/dist/index.js b/dist/index.js index 5bd9c4fe..5b106e70 100644 --- a/dist/index.js +++ b/dist/index.js @@ -6355,7 +6355,7 @@ 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()); diff --git a/src/install-python.ts b/src/install-python.ts index a931a5a5..fb5ffc7d 100644 --- a/src/install-python.ts +++ b/src/install-python.ts @@ -38,7 +38,7 @@ async function installPython(workingDirectory: string) { silent: true, listeners: { stdout: (data: Buffer) => { - core.debug(data.toString().trim()); + core.info(data.toString().trim()); }, stderr: (data: Buffer) => { core.error(data.toString().trim());