소스 검색

removing debug dumps

Stephanie Stattel 6 년 전
부모
커밋
667353c8c2
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  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;