]> git.codecow.com Git - libnemo.git/commitdiff
Remove logging from safe.
authorChris Duncan <chris@zoso.dev>
Thu, 3 Jul 2025 20:29:33 +0000 (13:29 -0700)
committerChris Duncan <chris@zoso.dev>
Thu, 3 Jul 2025 20:29:33 +0000 (13:29 -0700)
src/lib/workers/safe.ts

index a5e31de6fd6004c67582d734b3806cc8013a25d1..1860874effea00cb9fb6e7484f638fe16541edf1 100644 (file)
@@ -42,7 +42,6 @@ export class Safe extends WorkerInterface {
                this.#storage = await this.#open(this.DB_NAME)
                const results: SafeOutput[] = []
                for (const d of data) {
-                       console.log(d)
                        const { name, method, password, data } = d as SafeInput
                        let result
                        try {
@@ -70,7 +69,6 @@ export class Safe extends WorkerInterface {
                                }
                                results.push({ name, method, result })
                        } catch (err) {
-                               console.log(err)
                                result = false
                        }
                }