I lied i logged again

This commit is contained in:
Jesse Wierzbinski 2024-04-14 02:13:02 -10:00
parent 4db9b1c544
commit 44b99a9b4d
No known key found for this signature in database

View file

@ -84,7 +84,10 @@ export const processRoute = async (
const route: APIRouteExports | null = await import( const route: APIRouteExports | null = await import(
matchedRoute.filePath matchedRoute.filePath
).catch(() => null); ).catch((e) => {
dualLogger.logError(LogLevel.ERROR, "Server.RouteImport", e as Error);
return null;
});
console.log(route); console.log(route);