Skip to content

Commit

Permalink
Deleted two debug lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezequiel Santamaría Navarro committed Jan 12, 2016
1 parent 2a5ee2b commit 6d508b1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -13,3 +13,4 @@
.metadata
npm-debug.log

*~
1 change: 0 additions & 1 deletion lib/services/client/execute.js
Expand Up @@ -65,7 +65,6 @@ function endExecute(req, res) {
* @param {Function} handler User handler to be executed if everything goes ok.
*/
function handleExecute(req, res, handler) {
res.write("prueba");
coapUtils.extractUriInfo(req, res, function (error, objectUri, resourceId, payload) {
async.waterfall([
apply(objectRegistry.get, objectUri),
Expand Down
1 change: 0 additions & 1 deletion lib/services/coapRouter.js
Expand Up @@ -59,7 +59,6 @@ function dataHandler(serverInfo) {
if (req.method === serverInfo.routes[i][0] && req.urlObj.pathname.match(serverInfo.routes[i][1])) {
serverInfo.handlers[serverInfo.routes[i][2]]
.lib(req, res, serverInfo.handlers[serverInfo.routes[i][2]].user);
console.log(serverInfo.handlers[serverInfo.routes[i][2]]);
return;
}
}
Expand Down

0 comments on commit 6d508b1

Please sign in to comment.