Skip to content

Commit

Permalink
Support human readable health data
Browse files Browse the repository at this point in the history
  • Loading branch information
samitbadle committed Mar 9, 2015
1 parent 057f204 commit ccc44e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ide/main/src/content/health/health-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ HealthService.prototype.getData = function() {
/**
* Return the collected data
*/
HealthService.prototype.getJSON = function() {
return JSON.stringify(this.getData());
HealthService.prototype.getJSON = function(pretty) {
return JSON.stringify(this.getData(), null, 2);
};

/**
Expand Down

0 comments on commit ccc44e2

Please sign in to comment.