diff --git a/entry b/entry index a6b413c..fbb1e7d 100755 --- a/entry +++ b/entry @@ -135596,7 +135596,7 @@ var isGitHubActions = !!process.env.GITHUB_ACTIONS; var isInsideDocker = existsSync("/.dockerenv"); // utils/log.ts -var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || process.env.RUNNER_DEBUG === "1" || core.isDebug(); +var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || core.isDebug(); function formatArgs(args2) { return args2.map((arg) => { if (typeof arg === "string") return arg; diff --git a/get-installation-token/entry b/get-installation-token/entry index 9484c95..b7fdf10 100755 --- a/get-installation-token/entry +++ b/get-installation-token/entry @@ -25515,7 +25515,7 @@ var isGitHubActions = !!process.env.GITHUB_ACTIONS; var isInsideDocker = existsSync("/.dockerenv"); // utils/log.ts -var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || process.env.RUNNER_DEBUG === "1" || core.isDebug(); +var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || core.isDebug(); function formatArgs(args) { return args.map((arg) => { if (typeof arg === "string") return arg; diff --git a/post b/post index b0ded0c..aa0dcc9 100755 --- a/post +++ b/post @@ -40983,7 +40983,7 @@ var isGitHubActions = !!process.env.GITHUB_ACTIONS; var isInsideDocker = existsSync("/.dockerenv"); // utils/log.ts -var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || process.env.RUNNER_DEBUG === "1" || core.isDebug(); +var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || core.isDebug(); function formatArgs(args2) { return args2.map((arg) => { if (typeof arg === "string") return arg; diff --git a/utils/log.ts b/utils/log.ts index 21bd424..9410fd1 100644 --- a/utils/log.ts +++ b/utils/log.ts @@ -7,10 +7,7 @@ import { table } from "table"; import { isGitHubActions, isInsideDocker } from "./globals.ts"; const isDebugEnabled = () => - process.env.LOG_LEVEL === "debug" || - process.env.ACTIONS_STEP_DEBUG === "true" || - process.env.RUNNER_DEBUG === "1" || - core.isDebug(); + process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || core.isDebug(); /** * Format arguments into a single string for logging