Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
tsingh777 committed Jan 4, 2021
1 parent cded482 commit 588368c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions api/controllers/kosh.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ exports.wordSearch = async (req, res) => {
WHEN wordUni LIKE ? THEN 3
ELSE 4
END`;
console.log(q);
const rows = await conn.query(q, [
match,
match,
Expand Down Expand Up @@ -126,7 +125,6 @@ exports.search = async (req, res) => {
WHEN definitionUni LIKE ? THEN 6
ELSE 7
END`;
console.log(q);
const rows = await conn.query(q, [
match,
match,
Expand Down

0 comments on commit 588368c

Please sign in to comment.