aboutsummaryrefslogtreecommitdiff
path: root/src/api/structures/Server.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/structures/Server.js')
-rw-r--r--src/api/structures/Server.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/api/structures/Server.js b/src/api/structures/Server.js
index 7f1b4d5..e25e089 100644
--- a/src/api/structures/Server.js
+++ b/src/api/structures/Server.js
@@ -70,9 +70,13 @@ class Server {
let routes = [RouteClass];
if (Array.isArray(RouteClass)) routes = RouteClass;
for (const File of routes) {
- const route = new File();
- this.server[route.method](process.env.ROUTE_PREFIX + route.path, route.authorize.bind(route));
- log.info(`Found route ${route.method.toUpperCase()} ${process.env.ROUTE_PREFIX}${route.path}`);
+ try {
+ const route = new File();
+ this.server[route.method](process.env.ROUTE_PREFIX + route.path, route.authorize.bind(route));
+ log.info(`Found route ${route.method.toUpperCase()} ${process.env.ROUTE_PREFIX}${route.path}`);
+ } catch (e) {
+ log.error(`Failed loading route from file ${routeFile} with error: ${e.message}`);
+ }
}
});
}