Skip to content

Commit

Permalink
remove verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
erossignon committed Feb 25, 2014
1 parent adca359 commit d93dcc8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/server/server_engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,13 +211,11 @@ ServerEngine.prototype.browseSingleNode = function (nodeId, browseDescription) {
*/
ServerEngine.prototype.browse = function (nodesToBrowse) {

console.log(util.inspect(nodesToBrowse,{ colors:true, depth: 5}));
var results = [];
var self = this;
nodesToBrowse.forEach(function (browseDescription) {
var nodeId = resolveNodeId(browseDescription.nodeId);
var r = self.browseSingleNode(nodeId, browseDescription);
console.log(util.inspect(r,{ colors:true, depth: 5}));
results.push(r);
});
return results;
Expand Down

0 comments on commit d93dcc8

Please sign in to comment.