Skip to content

Commit

Permalink
remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
matyaskopp committed Dec 1, 2021
1 parent 38ac725 commit d5599c5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion app/db/ip.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ exports.getTop = (filter,
min_exist
) => {
logger.trace();
logger.warn('db.ip.getTop() uses only default settings !!!');
min_exist = parseInt(min_exist);
const {query, values, header} = createFilter({
'period': {
Expand Down
2 changes: 0 additions & 2 deletions app/routes/adminRoutes.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,9 @@ router.get('/admin/ips', function (req, res, next) {
min_exist: req.query.min_exist || 0
};
var table_params = [];
logger.error('post ws get !!! ',req);

for (const [k,v] of Object.entries(val)){
table_params.push(`${k}=${v}`);
logger.error(`${k}=${v}`);
}
res.render('ips', {
user: user,
Expand Down

0 comments on commit d5599c5

Please sign in to comment.