diff --git a/back/src/main.ts b/back/src/main.ts index a8e1622..7e03f94 100644 --- a/back/src/main.ts +++ b/back/src/main.ts @@ -1,4 +1,4 @@ -import { InternalServerErrorException, Logger, ValidationPipe } from '@nestjs/common' +import { Logger, ValidationPipe } from '@nestjs/common' import { NestFactory } from '@nestjs/core' import { AppModule } from './app.module' import * as session from 'express-session' @@ -45,5 +45,5 @@ async function bootstrap (): Promise { logger.log(`Application listening on port ${port}`) } bootstrap().catch((e) => { - throw new InternalServerErrorException(e) + console.log('Error!') })