Skip to content

Commit

Permalink
removed useless log
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoMario committed Dec 22, 2019
1 parent 3cae7d9 commit 35d74b9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions examples/petstore/controllers/Pet.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ module.exports.findPetsByStatus = function findPetsByStatus (req, res, next) {
var status = req.query.status[0];
var sessionid = req.cookies.sessionId;

console.log("status:", status)
console.log("sessionId:", sessionid)

Pet.findPetsByStatus(status,sessionid)
.then(function (response) {
utils.writeJson(res, response);
Expand Down

0 comments on commit 35d74b9

Please sign in to comment.