Skip to content

Commit

Permalink
fix: logging typos
Browse files Browse the repository at this point in the history
  • Loading branch information
deemp committed Aug 27, 2023
1 parent 15e106b commit 3de5ccb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/purge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async function purgeByTime(useAccessedTime: boolean, keys: string[]) {
setFailedWrongValue(inputMaxAge, maxAge);
}

core.info(`Purging caches with keys '${keys}' ${verb} before ${maxDate}`);
core.info(`Purging caches with keys\n${keys}\n${verb} before ${maxDate}`);

const token = core.getInput(Inputs.Token, { required: false });
const octokit = github.getOctokit(token);
Expand Down Expand Up @@ -92,7 +92,7 @@ async function purgeByTime(useAccessedTime: boolean, keys: string[]) {
}

function purgeByKey(keys: string[]) {
core.info(`Purging caches with key '${keys}'`);
core.info(`Purging caches with keys\n${keys}`);

const token = core.getInput(Inputs.Token, { required: false });
const octokit = github.getOctokit(token);
Expand Down

0 comments on commit 3de5ccb

Please sign in to comment.