From d870af4f08813708f32ca42855099b6d0c5a2c96 Mon Sep 17 00:00:00 2001 From: zcong1993 Date: Fri, 19 Jun 2020 16:00:51 +0800 Subject: [PATCH] feat: log body --- dist/index.js | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 958ba45..1cefad7 100644 --- a/dist/index.js +++ b/dist/index.js @@ -396,7 +396,7 @@ function run() { try { const token = core.getInput('dingToken'); const body = core.getInput('body'); - core.debug(`Send body: ${body}`); + core.info(`Send body: ${body}`); try { const resp = yield axios_1.default({ method: 'post', diff --git a/src/index.ts b/src/index.ts index 29b4b07..57f94e4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,7 +7,7 @@ async function run(): Promise { try { const token: string = core.getInput('dingToken') const body: string = core.getInput('body') - core.debug(`Send body: ${body}`) + core.info(`Send body: ${body}`) try { const resp = await axios({ method: 'post',