Skip to content

Commit

Permalink
silence logging
Browse files Browse the repository at this point in the history
  • Loading branch information
theoephraim committed Mar 18, 2014
1 parent 9f620d6 commit b0946ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ module.exports = function( ss_key, auth_id ){
} else if( response.statusCode === 401 ) {
return cb( new Error("Invalid authorization key."));
} else if ( response.statusCode >= 400 ) {
console.log( body );
// console.log( body );
return cb( new Error("HTTP error " + response.statusCode + ": " + http.STATUS_CODES[response.statusCode]));
}

Expand Down Expand Up @@ -289,8 +289,8 @@ var SpreadsheetCell = function( spreadsheet, worksheet_id, data ){

data_xml = data_xml.replace('<entry>', "<entry xmlns='http://www.w3.org/2005/Atom' xmlns:gs='http://schemas.google.com/spreadsheets/2006'>");

console.log(self['_links']['edit']);
console.log(data_xml);
// console.log(self['_links']['edit']);
// console.log(data_xml);

spreadsheet.makeFeedRequest( self['_links']['edit'], 'PUT', data_xml, cb );
}
Expand Down

0 comments on commit b0946ee

Please sign in to comment.