Skip to content

Commit 0da9e6d

Browse files
committed
remove unnecessary debug statements
1 parent 69f7798 commit 0da9e6d

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

lib/application.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Application.get = function(client, id, callback) {
1313
}
1414
client.makeRequest("get", client.concatAccountPath(APPLICATION_PATH), null, id, function(err, res){
1515
if(err){
16-
console.log(err)
1716
return callback(err);
1817
}
1918
var item = res.application;

test/application.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ describe("Application", function(){
135135
}
136136
item.applicationId.should.equal(2);
137137
item.appName.should.equal("Test Application 2");
138-
console.log(item)
139138
item.serviceType.should.equal("Voice-V2");
140139
done();
141140
});
@@ -151,7 +150,6 @@ describe("Application", function(){
151150
}
152151
item.applicationId.should.equal(2);
153152
item.appName.should.equal("Test Application 2");
154-
console.log(item)
155153
item.serviceType.should.equal("Voice-V2");
156154
done();
157155
});

0 commit comments

Comments
 (0)