devex: remove verbose logging on copy and paste

This commit is contained in:
KernelDeimos
2025-10-16 18:13:21 -04:00
committed by Eric Dubé
parent d2346ff1c7
commit 1404f10333
2 changed files with 0 additions and 8 deletions

View File

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

View File

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