Skip to content

Commit 4711784

Browse files
authored
Print all install report fields in diagnose report (#483)
The dependencies and flags fields were missing from the Node.js integration diagnose report output. It was sent, just not printed. Now it matches the other integrations output.
1 parent 2ceda25 commit 4711784

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
bump: "patch"
3+
---
4+
5+
Print the extension installation dependencies and flags in the diagnose report output.

packages/nodejs/src/cli/diagnose.ts

+8
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,14 @@ export class Diagnose {
108108
data["installation"]["build"]["library_type"]
109109
)}`
110110
)
111+
console.log(
112+
` Dependencies: ${format_value(
113+
data["installation"]["build"]["dependencies"]
114+
)}`
115+
)
116+
console.log(
117+
` Flags: ${format_value(data["installation"]["build"]["flags"])}`
118+
)
111119
console.log(` Host details`)
112120
console.log(
113121
` Root user: ${format_value(

0 commit comments

Comments
 (0)