From 0eb062a2e6b09eb8c8f0484073db2a0fcc59b9e5 Mon Sep 17 00:00:00 2001 From: Yan Zhang Date: Fri, 23 Aug 2019 13:38:48 +0800 Subject: [PATCH] Update historyUtils.ts (#383) --- src/utils/historyUtils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils/historyUtils.ts b/src/utils/historyUtils.ts index 14fff8ac..0484b560 100644 --- a/src/utils/historyUtils.ts +++ b/src/utils/historyUtils.ts @@ -26,7 +26,6 @@ export async function updateLRUCommands(command: string, pomPath: string): Promi historyObject.pomPath = pomPath; historyObject.timestamps[command] = Date.now(); } catch (error) { - console.error(error); historyObject = { pomPath, timestamps: {} }; historyObject.timestamps[command] = Date.now(); }