From 2e2c86de0c5cab8f2240156e0b0273d6c042bd27 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Sun, 8 Mar 2020 02:13:56 +0900 Subject: [PATCH] fix: log --- src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index 379767fe..f461c481 100644 --- a/src/main.ts +++ b/src/main.ts @@ -9,8 +9,8 @@ export async function run(): Promise { core.info(`[INFO] config_file: ${inps.ConfigFilePath}`); const context = github.context; - console.log(`[INFO] context ${context}`); - console.log(`[INFO] payload ${context.payload}`); + console.log(context); + console.log(context.payload); } catch (error) { throw new Error(error.message); }