Merge pull request #2634 from strongloop/fixup-glob
Remove unnecessary g.log
This commit is contained in:
commit
21ce174939
|
@ -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);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue