Browse Source

removing debug dumps

Stephanie Stattel 6 years ago
parent
commit
667353c8c2
1 changed files with 0 additions and 2 deletions
  1. 0 2
      packages/notebook-extension/src/index.ts

+ 0 - 2
packages/notebook-extension/src/index.ts

@@ -1613,7 +1613,6 @@ function populatePalette(
   services.nbconvert.getExportFormats().then(response => {
     if (response.exportList) {
       // convert exportList to palette items
-      console.error(response.exportList);
       const formatList = Object.keys(response.exportList);
       formatList.forEach(function(key) {
         let labelStr = FORMAT_LABEL[key] ? FORMAT_LABEL[key] : key;
@@ -1758,7 +1757,6 @@ function populateMenus(
   services.nbconvert.getExportFormats().then(response => {
     if (response.exportList) {
       // convert exportList to palette items
-      console.error(response.exportList);
       const formatList = Object.keys(response.exportList);
       formatList.forEach(function(key) {
         let labelStr = FORMAT_LABEL[key] ? FORMAT_LABEL[key] : key;