Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
andrealeo83 committed Jun 8, 2018
1 parent a90efab commit dd204bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion middleware/valid-token.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

// unused
module.exports = function(req, res, next) {
console.log("valid-token");
// console.log("valid-token");
var token = getToken(req.headers);
// console.log("token", token);
if (token) {
Expand Down
2 changes: 1 addition & 1 deletion routes/faq_kb.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ router.delete('/:faq_kbid', function (req, res) {

router.get('/:faq_kbid', function (req, res) {

// console.log(req.body);
console.log(req.query);

Faq_kb.findById(req.params.faq_kbid, function (err, faq_kb) {
if (err) {
Expand Down

0 comments on commit dd204bf

Please sign in to comment.