feat: log body
This commit is contained in:
parent
1b3399a065
commit
d870af4f08
|
@ -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',
|
||||
|
|
|
@ -7,7 +7,7 @@ async function run(): Promise<void> {
|
|||
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',
|
||||
|
|
Loading…
Reference in New Issue