From c5a6b6575aafd29c63f26a418051ebb4909bafd7 Mon Sep 17 00:00:00 2001 From: Kuingsmile <96409857+Kuingsmile@users.noreply.github.com> Date: Fri, 5 Sep 2025 11:42:17 +0800 Subject: [PATCH] :hammer: Refactor(custom): remove unused debug log --- src/main/utils/syncSettings.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/utils/syncSettings.ts b/src/main/utils/syncSettings.ts index c88ebea6..d0f29971 100644 --- a/src/main/utils/syncSettings.ts +++ b/src/main/utils/syncSettings.ts @@ -379,10 +379,8 @@ async function downloadRemoteToLocal(syncConfig: ISyncConfig, fileName: string) if (webdavAuthType === 'digest') { options.authType = AuthType.Digest } - console.log(webdavEndpointF, options) const client = createClient(webdavEndpointF, options) const remoteFilePath = (webdavSavePath ? path.join(webdavSavePath, fileName) : fileName).replace(/\\/g, '/') - console.log('remoteFilePath', remoteFilePath) const fileContent = await client.getFileContents(remoteFilePath) await fs.writeFile(localFilePath, fileContent as Buffer) return true