Skip to content

Commit

Permalink
remove log info
Browse files Browse the repository at this point in the history
  • Loading branch information
phiofuni committed Feb 28, 2025
1 parent 96f3fc5 commit 7ac61f2
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/controllers/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ searchController.search = async function (req, res, next) {
return next();
}

console.log('searchController.search');
console.log(req.query);

// Map source parameter to category IDs:
// Announcements -> 1
// General -> 2
Expand All @@ -45,8 +42,6 @@ searchController.search = async function (req, res, next) {
searchCategories = ['3'];
}

console.log('searchCategories', searchCategories);

const page = Math.max(1, parseInt(req.query.page, 10)) || 1;

const searchOnly = parseInt(req.query.searchOnly, 10) === 1;
Expand Down

0 comments on commit 7ac61f2

Please sign in to comment.