From 1404f1033394df29970e59780407eab29d382904 Mon Sep 17 00:00:00 2001 From: KernelDeimos <7225168+KernelDeimos@users.noreply.github.com> Date: Thu, 16 Oct 2025 18:13:21 -0400 Subject: [PATCH] devex: remove verbose logging on copy and paste --- src/backend/src/filesystem/ll_operations/ll_copy.js | 5 ----- src/backend/src/util/otelutil.js | 3 --- 2 files changed, 8 deletions(-) diff --git a/src/backend/src/filesystem/ll_operations/ll_copy.js b/src/backend/src/filesystem/ll_operations/ll_copy.js index 388d8c92..ff529738 100644 --- a/src/backend/src/filesystem/ll_operations/ll_copy.js +++ b/src/backend/src/filesystem/ll_operations/ll_copy.js @@ -47,11 +47,6 @@ class LLCopy extends LLFilesystemOperation { await source.fetchEntry({ thumbnail: true }); this.checkpoint('fetched source and parent entries'); - console.log('PATH PARAMETERS', { - path: await parent.get('path'), - target_name, - }) - // Access Control { const svc_acl = context.get('services').get('acl'); diff --git a/src/backend/src/util/otelutil.js b/src/backend/src/util/otelutil.js index 937072eb..0f3ee0ec 100644 --- a/src/backend/src/util/otelutil.js +++ b/src/backend/src/util/otelutil.js @@ -108,9 +108,7 @@ class ParallelTasks { const span = this.tracer.startSpan(name); return context.with(trace.setSpan(context.active(), span), async () => { try { - console.log('AA :: BEFORE'); const res = await fn(); - console.log('AA :: AFTER'); this.ongoing_--; this.check_queue_(); return res; @@ -124,7 +122,6 @@ class ParallelTasks { } check_queue_ () { - console.log('CHECKING QUQUE', this.ongoing_, this.queue_.length); while ( this.ongoing_ < this.max && this.queue_.length > 0 ) { const [name, fn, p] = this.queue_.shift(); const run_p = this.run_(name, fn);