Skip to content

Commit 64cee7c

Browse files
committed
manual
1 parent f8ddd0d commit 64cee7c

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

packages/cli/index.ts

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -519,21 +519,9 @@ const main = defineCommand({
519519

520520
const debug = laterRes.debug;
521521

522-
// Visible warning in logs
523-
core.warning(`🔍 Debug Data:\n${JSON.stringify(debug, null, 2)}`);
524-
525-
// Try Job Summary with manual HTML
526-
await core.summary
527-
.addRaw(`
528-
<details>
529-
<summary>🔍 Backend Debug Data</summary>
530-
531-
\`\`\`json
532-
${JSON.stringify(debug, null, 2)}
533-
\`\`\`
534-
535-
</details>`)
536-
.write();
522+
console.log("::group::🔍 Backend Debug Data");
523+
console.log(JSON.stringify(debug, null, 2));
524+
console.log("::endgroup::");
537525

538526
console.warn("\n");
539527
console.warn("⚡️ Your npm packages are published.\n");

0 commit comments

Comments
 (0)