Skip to content

Commit

Permalink
Remove inspect call (fixes #7)
Browse files Browse the repository at this point in the history
  • Loading branch information
saulshanabrook committed Aug 16, 2015
1 parent ba17f7b commit 6526c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var createStartFn = function(tc, env) {
}

for (var i = index; i < args.length; i++) {
msg += ' ' + inspect(args[i]);
msg += ' ' + args[i];
}

parse_stream.write(msg + '\n');
Expand Down

0 comments on commit 6526c7f

Please sign in to comment.