From afc6b5cbd6f14c6652aec373440ee7f7cd8c20e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Strn=C3=A1dek?= Date: Fri, 19 Aug 2022 14:20:03 +0200 Subject: [PATCH] More debug filters --- dist/index.js | 4 ++++ index.js | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/dist/index.js b/dist/index.js index 8a2bf84..771d1ae 100644 --- a/dist/index.js +++ b/dist/index.js @@ -40727,6 +40727,9 @@ const main = async () => { } core.debug("Iterate over files and test include, exclude filters and dates..."); + core.debug(`Exclude filters: ${core.getMultilineInput("exclude")}`); + core.debug(`Include filters: ${core.getMultilineInput("include")}`); + let isTruncated = true; let lastMarker = undefined; let objects = []; @@ -40759,6 +40762,7 @@ const main = async () => { if (dryRun) { console.log(`-> Item ${item.Key} will be removed`); + core.debug(`-> Item ${item.Key} will be removed`); } else { objects.push({ Key: item.Key, diff --git a/index.js b/index.js index fb0a389..dab6442 100644 --- a/index.js +++ b/index.js @@ -28,6 +28,9 @@ const main = async () => { } core.debug("Iterate over files and test include, exclude filters and dates..."); + core.debug(`Exclude filters: ${core.getMultilineInput("exclude")}`); + core.debug(`Include filters: ${core.getMultilineInput("include")}`); + let isTruncated = true; let lastMarker = undefined; let objects = []; @@ -60,6 +63,7 @@ const main = async () => { if (dryRun) { console.log(`-> Item ${item.Key} will be removed`); + core.debug(`-> Item ${item.Key} will be removed`); } else { objects.push({ Key: item.Key,