From 1b95186ab8478cf6ee15cc945467fcb628892467 Mon Sep 17 00:00:00 2001 From: Sainan Date: Sat, 19 Oct 2024 13:45:06 +0200 Subject: [PATCH] chore: remove leftover console.log in inventoryController (#569) --- src/controllers/api/inventoryController.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/controllers/api/inventoryController.ts b/src/controllers/api/inventoryController.ts index 315af1cc1..9272869a6 100644 --- a/src/controllers/api/inventoryController.ts +++ b/src/controllers/api/inventoryController.ts @@ -31,7 +31,6 @@ const inventoryController: RequestHandler = async (request, response) => { //TODO: make a function that converts from database representation to client const inventoryJSON: IInventoryDatabase = inventory.toJSON(); - console.log(inventoryJSON.Ships); const inventoryResponse = toInventoryResponse(inventoryJSON);