Skip to content

Commit

Permalink
Merge pull request #420 from bkw/betterLogs
Browse files Browse the repository at this point in the history
fully unroll params in log message, don’t include hidden props
  • Loading branch information
lsegal committed Dec 10, 2014
2 parents 91005bd + bc10498 commit 772df68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/event_listeners.js
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ AWS.EventListeners = {
var delta = (time - req.startTime.getTime()) / 1000;
var ansi = logger.isTTY ? true : false;
var status = resp.httpResponse.statusCode;
var params = require('util').inspect(req.params, true, true);
var params = require('util').inspect(req.params, true, null);

var message = '';
if (ansi) message += '\x1B[33m';
Expand Down

0 comments on commit 772df68

Please sign in to comment.