Remove logs

This commit is contained in:
DianaXWiki 2026-01-14 11:19:20 +02:00
parent 8826ce7ee5
commit d89b6ef79f
2 changed files with 1 additions and 7 deletions

View File

@ -503,14 +503,8 @@ const factory = (UserObject, Util, Hash,
// Move files or folders in the drive
var _move = function (Env, data, cb) {
if (typeof console !== 'undefined' && console.log) {
console.log('[PROXY-MANAGER] _move called with paths:', JSON.stringify(data.paths), 'newPath:', JSON.stringify(data.newPath));
}
var resolved = _resolvePaths(Env, data.paths);
var newResolved = _resolvePath(Env, data.newPath);
if (typeof console !== 'undefined' && console.log) {
console.log('[PROXY-MANAGER] Resolved - main:', resolved.main.length, 'folders:', Object.keys(resolved.folders).length, 'newResolved.id:', newResolved.id);
}
// NOTE: we can only copy when moving from one drive to another. We don't want
// duplicates in the same drive

File diff suppressed because one or more lines are too long