From e74aea5a6f2e7f67a865251a1d76a0b155c8bd0e Mon Sep 17 00:00:00 2001 From: Steve Cassidy Date: Fri, 10 Nov 2023 08:59:15 +1100 Subject: [PATCH] remove debug output Signed-off-by: Steve Cassidy --- src/couchdb/notebooks.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/couchdb/notebooks.ts b/src/couchdb/notebooks.ts index b31567cc..5be21f0f 100644 --- a/src/couchdb/notebooks.ts +++ b/src/couchdb/notebooks.ts @@ -314,7 +314,6 @@ export const createNotebook = async ( uispec: ProjectUIModel, metadata: any ) => { - console.log('creating notebook', projectName); const project_id = generateProjectID(projectName); const metaDBName = `metadata-${project_id}`; @@ -336,7 +335,6 @@ export const createNotebook = async ( // this is used to find the other databases below const projectsDB = getProjectsDB(); if (projectsDB) { - console.log('writing to projectDB', projectsDB.name); await projectsDB.put(projectDoc); } } catch (error) { @@ -348,7 +346,6 @@ export const createNotebook = async ( if (!metaDB) { return undefined; } - console.log('writing metadata', metaDB.name); // get roles from the notebook, ensure that 'user' and 'admin' are included const roles = metadata.accesses || ['admin', 'user', 'team']; if (roles.indexOf('user') < 0) { @@ -395,7 +392,6 @@ export const createNotebook = async ( } try { - console.log('adding design docs to data db', dataDB.name); await addDesignDocsForNotebook(dataDB); } catch (error) { console.log(error);