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',