From a94ce12eb0dd40526359d30805ca284cf1321f78 Mon Sep 17 00:00:00 2001 From: Raz Ben Simon Date: Tue, 10 Aug 2021 14:34:43 +0300 Subject: [PATCH] Make some important logs as "info" instead of "debug" Making some logs as "info" instead of "debug" so understand the decisions of the GitHub action. --- src/main.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.ts b/src/main.ts index 6840c57..8458b49 100644 --- a/src/main.ts +++ b/src/main.ts @@ -142,9 +142,9 @@ function getPreviousTag< const previousTag = res[index + 1] if (previousTag) { - core.debug(`Comparing ${previousTag}...${o.tag}`) + core.info(`Comparing ${previousTag}...${o.tag}`) } else { - core.debug(`${o.tag} is the first tag`) + core.info(`${o.tag} is the first tag`) } return ok({ @@ -183,7 +183,7 @@ function getChangedFiles< type: 'error' }) ).map(res => { - core.debug(`Found ${res.length} changed files`) + core.info(`Found ${res.length} changed files`) return { ...o, changedFiles: res