Skip to content

Commit

Permalink
remove unneeded log (#956)
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoMogg authored Aug 28, 2024
1 parent d4d9778 commit cf2d3b1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion apps/web/pages/api/proofs/cb1/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ async function handler(req: NextApiRequest, res: NextApiResponse) {
if (req.method !== 'GET') {
return res.status(405).json({ error: 'method not allowed' });
}
logger.info('cb1 proofs request', { query: req.query });
const { address, chain } = req.query;
const validationErr = proofValidation(address, chain);
if (validationErr) {
Expand Down

0 comments on commit cf2d3b1

Please sign in to comment.