Skip to content

Commit ccc44e2

Browse files
committed
Support human readable health data
1 parent 057f204 commit ccc44e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ide/main/src/content/health/health-service.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ HealthService.prototype.getData = function() {
230230
/**
231231
* Return the collected data
232232
*/
233-
HealthService.prototype.getJSON = function() {
234-
return JSON.stringify(this.getData());
233+
HealthService.prototype.getJSON = function(pretty) {
234+
return JSON.stringify(this.getData(), null, 2);
235235
};
236236

237237
/**

0 commit comments

Comments
 (0)