Removed stray console.log

This commit is contained in:
Josh Hall-Bachner 2013-06-05 19:20:12 -07:00
parent c237d65bad
commit 6ba548e21e

View File

@ -255,7 +255,7 @@
var body = {}; var body = {};
if(bodyFormat == 'json') { if(bodyFormat == 'json') {
body = unflattenDict(params); body = unflattenDict(params);
body = JSON.stringify(body); console.log(body); body = JSON.stringify(body);
} else { } else {
body = params; body = params;
} }