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);