Procházet zdrojové kódy

remove console.log

Jessica Xu před 4 roky
rodič
revize
ff0012894f
1 změnil soubory, kde provedl 1 přidání a 3 odebrání
  1. 1 3
      packages/apputils-extension/src/index.ts

+ 1 - 3
packages/apputils-extension/src/index.ts

@@ -313,13 +313,11 @@ async function updateTabTitle(
       workspace.startsWith('auto-') ? ` (${workspace})` : ``
     }`;
   } else {
-    console.log(current);
-
     //First 15 characters of current documnet name
     current = current.split(':')[1].slice(0, 15);
-
     //Number of restorable items, minus the layout restorer data
     const count: number = Object.keys(data).length - 1;
+
     if (workspace.startsWith('auto-')) {
       document.title = `${current} (${workspace}${
         count > 1 ? ` : ${count}` : ``