Skip to content

Commit

Permalink
Remove console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed Feb 7, 2022
1 parent 6077da8 commit ab9d9eb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion examples/with-fastify-auth/basicAuth.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ module.exports.basicAuth = function basicAuth(fastify, { queue }, next) {
});
fastify.addHook('onRequest', (req, reply, next) => {
fastify.basicAuth(req, reply, function (error) {
console.log(req.url);
if (!error) {
return next();
}
Expand Down
2 changes: 0 additions & 2 deletions packages/api/src/handlers/queues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ async function getAppQueues(
return Promise.all(
pairs.map(async ([queueName, queue]) => {
const isActiveQueue = decodeURIComponent(query.activeQueue) === queueName;
console.log({ isActiveQueue }, queueName);
console.log({ status: query.status });

const status =
!isActiveQueue || query.status === 'latest' ? allStatuses : [query.status as JobStatus];
Expand Down

0 comments on commit ab9d9eb

Please sign in to comment.