Quiet up error logs

This commit is contained in:
Owen
2026-09-08 10:01:59 -04:00
parent 59b228ce39
commit 733d3ece0e
3 changed files with 16 additions and 13 deletions
+6 -1
View File
@@ -2478,7 +2478,12 @@ hybridRouter.post(
destinations: destinations
});
} catch (error) {
logger.error(error);
if (!(
error instanceof Error &&
error.message === "Exit node not allowed"
)) {
logger.error(error);
}
return next(
createHttpError(
HttpCode.INTERNAL_SERVER_ERROR,