Merge pull request #2634 from strongloop/fixup-glob

Remove unnecessary g.log
This commit is contained in:
Tetsuo Seto 2016-08-16 07:01:37 -07:00 committed by GitHub
commit 21ce174939
1 changed files with 1 additions and 1 deletions

View File

@ -23,5 +23,5 @@ CartItem.sum(1, function(err, total) {
// call a built in remote method // call a built in remote method
CartItem.find(function(err, items) { CartItem.find(function(err, items) {
g.log(items); console.log(items);
}); });