From 76b83acf01527db7a55e710edcf2d730a41f53d1 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 18 Dec 2020 12:14:31 +0100 Subject: [PATCH] Remove debugging console statements --- Logic/InstalledThemes.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Logic/InstalledThemes.ts b/Logic/InstalledThemes.ts index 79d138cef1..3e42747ca8 100644 --- a/Logic/InstalledThemes.ts +++ b/Logic/InstalledThemes.ts @@ -17,8 +17,7 @@ export default class InstalledThemes { static InstalledThemes(osmConnection: OsmConnection) : UIEventSource<{ layout: LayoutConfig; definition: string }[]>{ return osmConnection.preferencesHandler.preferences.map<{ layout: LayoutConfig, definition: string }[]>(allPreferences => { const installedThemes: { layout: LayoutConfig, definition: string }[] = []; - console.log("UPdating the installed themes") - console.log("All preferences are ",allPreferences) + console.log("Updating the installed themes") if (allPreferences === undefined) { console.log("All prefs is undefined"); return installedThemes; @@ -35,7 +34,6 @@ export default class InstalledThemes { } try { var json = atob(customLayout.data); - console.log(json); const layout = new LayoutConfig( JSON.parse(json)); installedThemes.push({