feat: use logger

This commit is contained in:
2023-08-05 22:16:14 +02:00
parent 46cd823b6c
commit 32a7f89309
15 changed files with 99 additions and 37 deletions

View File

@ -37,7 +37,6 @@ export const handler: Handlers = {
const authors = url.searchParams?.get("author")?.split(",");
if (authors?.length) {
console.log({ authors });
resources = resources.filter((r) => {
return r?.meta?.author && authors.includes(r?.meta?.author);
});