From d0cdb6afb5036bdc7272cc617396eb0af10cb8e4 Mon Sep 17 00:00:00 2001 From: Humenius Date: Mon, 8 Feb 2021 03:08:39 +0100 Subject: [PATCH] [skip ci] Remove logger in backend controller --- backend/src/app.controller.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/app.controller.ts b/backend/src/app.controller.ts index 41b4ac3..f12255f 100644 --- a/backend/src/app.controller.ts +++ b/backend/src/app.controller.ts @@ -34,7 +34,6 @@ export class AppController { @Get('/stats/season/:id?') async getStats(@Param('id') id?: string): Promise { - logger.info(`Got id ${id}`) return await this.databaseService .fetchStats(id) .catch(err => {