Skip to content

Commit ac008f6

Browse files
author
aadamgough
committed
removed comments
1 parent 71b414c commit ac008f6

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

apps/sim/tools/google_drive/download.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ export const downloadTool: ToolConfig<GoogleDriveToolParams, GoogleDriveDownload
149149
fileBuffer = Buffer.from(arrayBuffer)
150150
}
151151

152-
// Fetch revisions if requested (default: true)
153152
const includeRevisions = params?.includeRevisions !== false
154153
if (includeRevisions) {
155154
try {

apps/sim/tools/google_drive/get_content.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ export const getContentTool: ToolConfig<GoogleDriveToolParams, GoogleDriveGetCon
137137
content = await downloadResponse.text()
138138
}
139139

140-
// Fetch revisions if requested (default: true)
141140
const includeRevisions = params?.includeRevisions !== false
142141
if (includeRevisions) {
143142
try {

apps/sim/tools/google_drive/upload.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -241,15 +241,6 @@ export const uploadTool: ToolConfig<GoogleDriveToolParams, GoogleDriveUploadResp
241241

242242
const finalFile = await finalFileResponse.json()
243243

244-
logger.info('File uploaded successfully', {
245-
fileId: finalFile.id,
246-
name: finalFile.name,
247-
mimeType: finalFile.mimeType,
248-
size: finalFile.size,
249-
hasOwners: !!finalFile.owners?.length,
250-
hasPermissions: !!finalFile.permissions?.length,
251-
})
252-
253244
return {
254245
success: true,
255246
output: {

0 commit comments

Comments
 (0)