From 9f16faa8b45594194f65dcec4f92ff86efe8e47b Mon Sep 17 00:00:00 2001 From: Steven Vandevelde Date: Wed, 27 Mar 2024 17:56:49 +0100 Subject: [PATCH] chore: Remove console.logs from example --- examples/w3-wnfs/src/fs.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/w3-wnfs/src/fs.ts b/examples/w3-wnfs/src/fs.ts index b77a2d4..26dbb78 100644 --- a/examples/w3-wnfs/src/fs.ts +++ b/examples/w3-wnfs/src/fs.ts @@ -28,8 +28,6 @@ export async function load({ const dataRoot = await Pointer.lookup({ client }) const storedKey = await Keys.lookup({ path: privatePath }) - console.log(dataRoot, storedKey) - // Create or load file system const fs = dataRoot === undefined @@ -114,7 +112,6 @@ export const Pointer = { }, async saveLocally({ dataRoot }: { dataRoot: CID }): Promise { - console.log(this.LOCAL_NAME, dataRoot) await IDB.set(this.LOCAL_NAME, dataRoot.toString()) },