We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5ad13f commit b2b6985Copy full SHA for b2b6985
packages/cli/index.ts
@@ -519,23 +519,9 @@ const main = defineCommand({
519
520
const debug = laterRes.debug;
521
522
- // Test if debug data exists
523
- console.log("DEBUG DATA EXISTS:", !!debug);
524
- console.log("DEBUG DATA:", debug);
525
-
526
- if (debug) {
527
- await core.summary
528
- .addDetails(
529
- "[INFO]",
530
- `\`\`\`json\n${JSON.stringify(debug, null, 2)}\n\`\`\``
531
- )
532
- .write();
533
- } else {
534
535
- .addHeading("⚠️ No Debug Data")
536
- .addRaw("Backend did not return debug data")
537
538
- }
+ core.startGroup("[INFO]");
+ core.info(JSON.stringify(debug, null, 2));
+ core.endGroup();
539
540
console.warn("\n");
541
console.warn("⚡️ Your npm packages are published.\n");
0 commit comments