Remove old logs

This commit is contained in:
Jesse Wierzbinski 2024-04-14 02:24:42 -10:00
parent 013f0b4459
commit 89590d5a3d
No known key found for this signature in database
2 changed files with 0 additions and 7 deletions

View file

@ -80,8 +80,6 @@ export const processRoute = async (
return response();
}
console.log(matchedRoute);
const route: APIRouteExports | null = await import(
matchedRoute.filePath
).catch((e) => {
@ -89,8 +87,6 @@ export const processRoute = async (
return null;
});
console.log(route);
if (!route) {
return errorResponse("Route not found", 404);
}