Add files using upload-large-folder tool
Browse files- b9a9ca28a4e05f1e6a074517e785841a391f641bfaa2a4e99d0c2e7b0c0d4aee/crowd-code-7d484c97-88c7-4cbf-92c0-58d360b2bb981750548003842-2025_06_21-16.20.05.453/source.csv +14 -0
- b9a9ca28a4e05f1e6a074517e785841a391f641bfaa2a4e99d0c2e7b0c0d4aee/crowd-code-7d484c97-88c7-4cbf-92c0-58d360b2bb981750548003842-2025_06_21-17.50.25.940/source.csv +0 -0
- b9a9ca28a4e05f1e6a074517e785841a391f641bfaa2a4e99d0c2e7b0c0d4aee/crowd-code-ff061eab-5d60-4321-8e13-dca42a7f7d631762170489148-2025_11_03-12.58.24.104/source.csv +3 -0
b9a9ca28a4e05f1e6a074517e785841a391f641bfaa2a4e99d0c2e7b0c0d4aee/crowd-code-7d484c97-88c7-4cbf-92c0-58d360b2bb981750548003842-2025_06_21-16.20.05.453/source.csv
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type
|
| 2 |
+
1,1,"src/recording.ts",0,0,"import * as fs from 'node:fs'\nimport * as util from 'node:util'\nimport * as path from 'node:path'\nimport * as vscode from 'vscode'\nimport * as readline from 'node:readline'\nimport axios from 'axios';\nimport {\n getEditorFileName,\n escapeString,\n getEditorLanguage,\n notificationWithProgress,\n generateBaseFilePath,\n formatDisplayTime,\n getExportPath,\n logToOutput,\n formatSrtTime,\n getConfig,\n removeDoubleQuotes,\n unescapeString,\n addToGitignore,\n} from './utilities'\nimport { type File, ChangeType, type CSVRowBuilder, type Change, type Recording, type ConsentStatus } from './types'\nimport { extContext, statusBarItem, actionsProvider } from './extension'\n\nexport const commands = {\n openSettings: 'vs-code-recorder.openSettings',\n startRecording: 'vs-code-recorder.startRecording',\n stopRecording: 'vs-code-recorder.stopRecording',\n}\n\nexport function hasConsent(): boolean {\n\t// A simple check against the global state.\n\treturn extContext.globalState.get('dataCollectionConsent') === 'accepted'\n}\n\nexport async function ensureConsent(): Promise<boolean> {\n\tlet consentStatus = extContext.globalState.get<ConsentStatus>('dataCollectionConsent', 'pending')\n\n\tif (consentStatus === 'pending') {\n\t\tconst consentMessage = vscode.l10n.t('Do you consent to share your anonymized recording data for crowd-sourcing purposes? This helps improve the tool.')\n\t\tconst grantOption = vscode.l10n.t('Yes, upload data')\n\t\tconst denyOption = vscode.l10n.t('No, store locally')\n\n\t\tconst decision = await vscode.window.showInformationMessage(\n\t\t\tconsentMessage,\n\t\t\t{ modal: true },\n\t\t\tgrantOption,\n\t\t\tdenyOption\n\t\t)\n\n\t\tif (decision === grantOption) {\n\t\t\tawait extContext.globalState.update('dataCollectionConsent', 'accepted')\n\t\t\tconsentStatus = 'accepted'\n\t\t} else {\n\t\t\tawait extContext.globalState.update('dataCollectionConsent', 'declined')\n\t\t\tconsentStatus = 'declined'\n\t\t\tvscode.window.showInformationMessage(\n\t\t\t\tvscode.l10n.t('You have not consented to data collection. Recordings will be stored locally only.')\n\t\t\t)\n\t\t}\n\t}\n\n\treturn consentStatus === 'accepted'\n}\n\nexport const recording: Recording = {\n isRecording: false,\n timer: 0,\n startDateTime: null,\n endDateTime: null,\n sequence: 0,\n customFolderName: '',\n activatedFiles: new Set<string>(),\n}\n\nlet intervalId: NodeJS.Timeout\nconst fileQueue: File[] = []\nlet isAppending = false\n\nlet uploadIntervalId: NodeJS.Timeout;\nconst sessionUuid = vscode.env.sessionId;\n\nconst API_GATEWAY_URL = 'https://knm3fmbwbi.execute-api.us-east-1.amazonaws.com/v1/recordings';\n\n\n/**\n * Builds a CSV row with the given parameters.\n *\n * @param {CSVRowBuilder} sequence - The sequence number of the change.\n * @param {CSVRowBuilder} rangeOffset - The offset of the changed range.\n * @param {CSVRowBuilder} rangeLength - The length of the changed range.\n * @param {CSVRowBuilder} text - The text of the change.\n * @param {string} type - The type of the change (optional, defaults to 'content').\n * @return {string} A CSV row string with the provided information.\n */\nexport function buildCsvRow({\n sequence,\n rangeOffset,\n rangeLength,\n text,\n type = ChangeType.CONTENT,\n}: CSVRowBuilder): string | undefined {\n if (!recording.startDateTime) {\n return\n }\n\n const time = new Date().getTime() - recording.startDateTime.getTime()\n\n if (type === ChangeType.HEADING) {\n return 'Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type\n'\n }\n\n if (type === ChangeType.TERMINAL_FOCUS || type === ChangeType.TERMINAL_COMMAND || type === ChangeType.TERMINAL_OUTPUT) {\n return `${sequence},${time},""TERMINAL"",${rangeOffset},${rangeLength},""${escapeString(text)}"",,${type}\n`\n }\n\n const editorFileName = getEditorFileName()\n return `${sequence},${time},""${editorFileName}"",${rangeOffset},${rangeLength},""${escapeString(text)}"",${getEditorLanguage()},${type}\n`\n}\n\n/**\n * Checks if the current file being edited is within the configured export path.\n * This is used to determine if the current file should be recorded or not.\n *\n * @returns {boolean} `true` if the current file is within the export path, `false` otherwise.\n */\nexport function isCurrentFileExported(): boolean {\n const editor = vscode.window.activeTextEditor\n const filename = editor?.document.fileName.replaceAll('\\', '/')\n const exportPath = getExportPath()\n if (!editor || !filename || !exportPath) {\n return false\n }\n return filename.startsWith(exportPath)\n}\n\nconst onChangeSubscription = vscode.workspace.onDidChangeTextDocument(event => {\n if (!recording.isRecording) {\n return\n }\n\n if (isCurrentFileExported()) {\n return\n }\n const editor = vscode.window.activeTextEditor\n if (editor && event.document === editor.document) {\n for (const change of event.contentChanges) {\n recording.sequence++\n addToFileQueue(\n buildCsvRow({\n sequence: recording.sequence,\n rangeOffset: change.rangeOffset,\n rangeLength: change.rangeLength,\n text: change.text,\n })\n )\n appendToFile()\n }\n }\n})\n\n/**\n * Creates the recording folder if it doesn't exist.\n * @param folderPath - The path to the recording folder.\n */\nfunction createRecordingFolder(folderPath: string): void {\n if (!fs.existsSync(folderPath)) {\n fs.mkdirSync(folderPath, { recursive: true })\n }\n}\n\n/**\n * Starts the recording process and initializes necessary variables.\n */\nexport async function startRecording(): Promise<void> {\n if (!vscode.window.activeTextEditor) {\n vscode.window.showErrorMessage(vscode.l10n.t('No active text editor'))\n logToOutput(vscode.l10n.t('No active text editor'), 'info')\n return\n }\n \n // Check and ensure consent before starting recording\n const hasUserConsent = await ensureConsent()\n if (!hasUserConsent) {\n logToOutput('Recording not started: User declined data collection consent', 'info')\n return\n }\n \n if (recording.isRecording) {\n notificationWithProgress(vscode.l10n.t('Already recording'))\n logToOutput(vscode.l10n.t('Already recording'), 'info')\n return\n }\n const exportPath = getExportPath()\n if (!exportPath) {\n return\n }\n\n // If the setting is enabled and the path is inside the workspace, add it to .gitignore\n if (\n getConfig().get<boolean>('export.addToGitignore') &&\n getConfig().get<string>('export.exportPath')?.startsWith('${workspaceFolder}')\n ) {\n await addToGitignore()\n }\n\n recording.startDateTime = new Date()\n recording.activatedFiles = new Set<string>()\n\n // Ask for folder name if enabled in settings\n let customFolderName: string | undefined\n if (getConfig().get('recording.askFolderName')) {\n customFolderName = await vscode.window.showInputBox({\n prompt: vscode.l10n.t('Enter a name for the recording folder'),\n placeHolder: vscode.l10n.t('Enter recording folder name'),\n })\n if (!customFolderName) {\n stopRecording(true)\n return\n }\n recording.customFolderName = customFolderName\n }\n\n const baseFilePath = generateBaseFilePath(recording.startDateTime, false, recording.customFolderName, sessionUuid)\n if (!baseFilePath) {\n stopRecording(true)\n return\n }\n\n // Create the recording folder\n const folderPath = path.dirname(path.join(exportPath, baseFilePath))\n createRecordingFolder(folderPath)\n\n recording.isRecording = true\n recording.timer = 0\n recording.endDateTime = null\n recording.sequence = 0\n intervalId = setInterval(() => {\n recording.timer++\n updateStatusBarItem()\n }, 1000)\n notificationWithProgress(vscode.l10n.t('Recording started'))\n logToOutput(vscode.l10n.t('Recording started'), 'info')\n\n const editorText = vscode.window.activeTextEditor?.document.getText()\n const activeEditorUri = vscode.window.activeTextEditor?.document.uri.toString()\n\n if (editorText !== undefined && activeEditorUri) {\n recording.sequence++\n const csvRow = {\n sequence: recording.sequence,\n rangeOffset: 0,\n rangeLength: 0,\n text: editorText,\n type: ChangeType.TAB,\n }\n addToFileQueue(buildCsvRow({ ...csvRow, type: ChangeType.HEADING }))\n addToFileQueue(buildCsvRow(csvRow))\n appendToFile()\n recording.activatedFiles.add(activeEditorUri)\n actionsProvider.setCurrentFile(vscode.window.activeTextEditor.document.fileName)\n }\n\n extContext.subscriptions.push(onChangeSubscription)\n updateStatusBarItem()\n actionsProvider.setRecordingState(true)\n\n // Set up a timer to send data to the Lambda endpoint periodically\n uploadIntervalId = setInterval(async () => {\n if (!exportPath) {\n return;\n }\n\n // Only upload data if user has given consent\n if (!hasConsent()) {\n return;\n }\n\n const filePath = path.join(exportPath, `${baseFilePath}.csv`);\n const extensionVersion = extContext.extension.packageJSON.version as string;\n const userId = extContext.globalState.get<string>('userId');\n\n try {\n const fileContent = await fs.promises.readFile(filePath, 'utf-8');\n\n if (fileContent) {\n const payload = {\n fileName: `${baseFilePath}.csv`,\n content: fileContent,\n version: extensionVersion,\n userId: userId\n };\n await axios.post(API_GATEWAY_URL, payload);\n console.log(`Successfully sent ${payload.fileName} to Lambda endpoint.`);\n }\n } catch (error: any) {\n if (error.code === 'ENOENT') {\n console.warn(`File not found at ${filePath}. It might be created on first write.`);\n } else {\n console.error(`Error sending data to Lambda: ${error.message}`);\n if (axios.isAxiosError(error) && error.response) {\n console.error(""Lambda response status:"", error.response.status);\n console.error(""Lambda response data:"", error.response.data);\n }\n }\n }\n }, 5 * 60 * 1000); // 5 minutes\n}\n\n/**\n * Stops the recording process and finalizes the recording data.\n * @param context - The extension context.\n */\nexport function stopRecording(force = false): Promise<void> | void {\n if (!recording.isRecording) {\n notificationWithProgress(vscode.l10n.t('Not recording'))\n return\n }\n\n recording.isRecording = false\n clearInterval(intervalId)\n clearInterval(uploadIntervalId); // Clear the upload timer\n recording.timer = 0\n recording.activatedFiles?.clear()\n const index = extContext.subscriptions.indexOf(onChangeSubscription)\n if (index !== -1) {\n extContext.subscriptions.splice(index, 1)\n }\n updateStatusBarItem()\n actionsProvider.setRecordingState(false)\n if (force) {\n notificationWithProgress(vscode.l10n.t('Recording cancelled'))\n logToOutput(vscode.l10n.t('Recording cancelled'), 'info')\n recording.customFolderName = undefined\n return\n }\n notificationWithProgress(vscode.l10n.t('Recording finished'))\n logToOutput(vscode.l10n.t('Recording finished'), 'info')\n recording.endDateTime = new Date()\n return processCsvFile().then(() => {\n // Reset customFolderName after processing is complete\n recording.customFolderName = undefined\n }).catch(err => {\n logToOutput(vscode.l10n.t('Error processing CSV file during stop: {0}', String(err)), 'error')\n recording.customFolderName = undefined\n });\n}\n\n/**\n * Appends data from the file queue to the appropriate file in the workspace.\n */\nexport async function appendToFile(): Promise<void> {\n if (isAppending) {\n return\n }\n isAppending = true\n\n const exportPath = getExportPath()\n if (!exportPath) {\n logToOutput('Export path not available in appendToFile, stopping recording.', 'error')\n stopRecording(true)\n isAppending = false\n return\n }\n\n while (fileQueue.length > 0) {\n const itemToAppend = fileQueue.shift()\n if (!itemToAppend) {\n continue\n }\n\n const filePath = path.join(exportPath, itemToAppend.name)\n\n try {\n const directory = path.dirname(filePath)\n if (!fs.existsSync(directory)) {\n fs.mkdirSync(directory, { recursive: true })\n }\n await fs.promises.appendFile(filePath, itemToAppend.content)\n } catch (err) {\n logToOutput(\n `Failed to append to file ${filePath}: ${err}. Item dropped. Content: ${itemToAppend.content.substring(0, 100)}...`,\n 'error'\n )\n }\n }\n isAppending = false\n}\n\n/**\n * Appends an SRT line to the file queue for the previous change.\n *\n * This function is responsible for generating the SRT format line for the previous change and adding it to the file queue.\n * It checks if the SRT export format is enabled, and if so, it generates the SRT line for the previous change and adds it to the file queue.\n *\n * @param processedChanges - An array of processed changes.\n * @param i - The index of the current change in the processedChanges array.\n * @param exportInSrt - A boolean indicating whether the SRT export format is enabled.\n */\nfunction addToSRTFile(processedChanges: Change[], i: number, exportInSrt: boolean) {\n if (!exportInSrt) {\n return\n }\n if (i === 0) {\n return\n }\n addToFileQueue(\n addSrtLine(\n processedChanges[i - 1].sequence,\n processedChanges[i - 1].startTime,\n processedChanges[i - 1].endTime,\n JSON.stringify({\n text: processedChanges[i - 1].text,\n file: processedChanges[i - 1].file,\n language: processedChanges[i - 1].language,\n })\n ),\n 'srt',\n true\n )\n}\n\n/**\n * Returns the new text content based on the change type and the previous change.\n * @param type - The type of the change.\n * @param text - The text of the change.\n * @param previousChange - The previous change.\n * @param rangeOffset - The offset of the range.\n * @param rangeLength - The length of the range.\n */\nfunction getNewTextContent(\n type: string,\n text: string,\n previousChange: Change | null,\n rangeOffset: number,\n rangeLength: number\n): string {\n if (type === ChangeType.TAB) {\n return text\n }\n if (!previousChange) {\n return ''\n }\n return getUpdatedText(previousChange.text, rangeOffset, rangeLength, text)\n}\n\n/**\n * Processes a single CSV line and returns the processed change\n */\nasync function processCSVLine(line: string, previousChange: Change | null): Promise<Change | null> {\n const lineArr = line.split(/,(?=(?:[^""]*""[^""]*"")*[^""]*$)/)\n\n if (Number.isNaN(Number.parseInt(lineArr[0]))) {\n return null\n }\n\n const time = Number.parseInt(lineArr[1])\n const file = removeDoubleQuotes(lineArr[2])\n const rangeOffset = Number.parseInt(lineArr[3])\n const rangeLength = Number.parseInt(lineArr[4])\n const text = unescapeString(removeDoubleQuotes(lineArr[5]))\n const language = lineArr[6]\n const type = lineArr[7]\n\n const newText = getNewTextContent(type, text, previousChange, rangeOffset, rangeLength)\n\n /**\n * Skip exporting changes with the same values to the previous change.\n */\n if (\n previousChange &&\n time === previousChange.startTime &&\n file === previousChange.file &&\n newText === previousChange.text &&\n language === previousChange.language\n ) {\n return null\n }\n\n return {\n sequence: previousChange ? previousChange.sequence + 1 : 1,\n file,\n startTime: time,\n endTime: 0,\n language,\n text: newText,\n }\n}\n\n/**\n * Returns the updated text content based on the previous text, range offset, range length, and new text.\n * @param previousText - The previous text.\n * @param rangeOffset - The offset of the range.\n * @param rangeLength - The length of the range.\n * @param newText - The new text.\n */\nfunction getUpdatedText(\n previousText: string,\n rangeOffset: number,\n rangeLength: number,\n newText: string\n): string {\n const textArray = previousText.split('')\n textArray.splice(rangeOffset, rangeLength, newText)\n return textArray.join('')\n}\n\n/**\n * Processes the CSV file and generates the necessary output files.\n */\nasync function processCsvFile(): Promise<void> {\n if (!validateRecordingState()) {\n return\n }\n\n const exportFormats = getConfig().get<string[]>('export.exportFormats', [])\n if (exportFormats.length === 0) {\n logToOutput(vscode.l10n.t('No export formats specified'), 'info')\n vscode.window.showWarningMessage(vscode.l10n.t('No export formats specified'))\n return\n }\n\n const exportPath = getExportPath()\n if (!exportPath) {\n return\n }\n\n if (!recording.startDateTime) {\n return\n }\n\n // Use the same custom folder name for reading the source file\n const baseFilePathSource = generateBaseFilePath(\n recording.startDateTime,\n false,\n recording.customFolderName,\n sessionUuid\n )\n if (!baseFilePathSource) {\n return\n }\n\n const filePath = path.join(exportPath, `${baseFilePathSource}.csv`)\n\n try {\n if (!fs.existsSync(filePath)) {\n throw new Error(`Source file not found: ${filePath}`)\n }\n\n const processedChanges: Change[] = []\n\n const rl = readline.createInterface({\n input: fs.createReadStream(filePath),\n crlfDelay: Number.POSITIVE_INFINITY,\n })\n\n for await (const line of rl) {\n const previousChange = processedChanges[processedChanges.length - 1]\n const change = await processCSVLine(line, previousChange)\n\n if (change) {\n if (previousChange) {\n previousChange.endTime = change.startTime\n if (exportFormats.includes('SRT')) {\n addToSRTFile(processedChanges, processedChanges.length, true)\n }\n }\n processedChanges.push(change)\n }\n }\n\n rl.close();\n\n return finalizeRecording(processedChanges, exportFormats);\n\n } catch (err) {\n vscode.window.showErrorMessage(`Error processing recording: ${err}`)\n logToOutput(vscode.l10n.t('Error processing CSV file: {0}', String(err)), 'error')\n return Promise.resolve(); // Resolve even on error after showing message\n }\n}\n\nfunction validateRecordingState(): boolean {\n if (!vscode.workspace.workspaceFolders) {\n logToOutput(\n vscode.l10n.t(\n 'No workspace folder found. To process the recording is needed a workspace folder'\n ),\n 'error'\n )\n return false\n }\n if (!recording.endDateTime || !recording.startDateTime) {\n logToOutput(vscode.l10n.t('Recording date time is not properly set'), 'error')\n return false\n }\n return true\n}\n\nfunction finalizeRecording(processedChanges: Change[], exportFormats: string[]): Promise<void> {\n const lastChange = processedChanges[processedChanges.length - 1]\n if (lastChange && recording.endDateTime && recording.startDateTime) {\n lastChange.endTime = recording.endDateTime.getTime() - recording.startDateTime.getTime()\n if (exportFormats.includes('SRT')) {\n addToSRTFile(processedChanges, processedChanges.length, true)\n }\n }\n if (exportFormats.includes('JSON')) {\n addToFileQueue(JSON.stringify(processedChanges), 'json', true)\n }\n return appendToFile().then(() => {\n // Refresh the recordFiles view after export is complete\n vscode.commands.executeCommand('vs-code-recorder.refreshRecordFiles')\n })\n}\n\n/**\n * Adds a line to the SRT file format.\n * @param sequence - The sequence number of the change.\n * @param start - The start time of the change.\n * @param end - The end time of the change.\n * @param text - The text of the change.\n * @returns A string representing a line in the SRT file format.\n */\nfunction addSrtLine(sequence: number, start: number, end: number, text: string): string {\n return `${sequence}\n${formatSrtTime(start)} --> ${formatSrtTime(end)}\n${text}\n\n`\n}\n\n/**\n * Adds content to the file queue.\n * @param content - The content to add.\n * @param fileExtension - The file extension (optional, defaults to 'csv').\n */\nexport function addToFileQueue(\n content: string | undefined,\n fileExtension = 'csv',\n isExport = false\n): void {\n if (!content) {\n return\n }\n if (!recording.startDateTime) {\n return\n }\n // Use the same custom name throughout the recording session\n const baseFilePath = generateBaseFilePath(recording.startDateTime, isExport, recording.customFolderName, sessionUuid)\n if (!baseFilePath) {\n return\n }\n fileQueue.push({\n name: `${baseFilePath}.${fileExtension}`,\n content: content,\n })\n}\n\n/**\n * Updates the status bar item with the current recording status and time.\n */\nexport function updateStatusBarItem(): void {\n const editor = vscode.window.activeTextEditor\n if (!editor && !recording) {\n statusBarItem.hide()\n return\n }\n if (recording.isRecording) {\n if (getConfig().get('appearance.showTimer') === false) {\n statusBarItem.text = '$(debug-stop)'\n statusBarItem.tooltip = vscode.l10n.t('Current time: {0}', formatDisplayTime(recording.timer))\n }\n if (getConfig().get('appearance.showTimer') === true) {\n statusBarItem.text = `$(debug-stop) ${formatDisplayTime(recording.timer)}`\n statusBarItem.tooltip = vscode.l10n.t('Stop Recording')\n }\n statusBarItem.command = commands.stopRecording\n } else {\n if (getConfig().get('appearance.minimalMode') === true) {\n statusBarItem.text = '$(circle-large-filled)'\n } else {\n statusBarItem.text = `$(circle-large-filled) ${vscode.l10n.t('Start Recording')}`\n }\n statusBarItem.tooltip = vscode.l10n.t('Start Recording')\n statusBarItem.command = commands.startRecording\n }\n statusBarItem.show()\n}",typescript,tab
|
| 3 |
+
2,91,"extension-output-pdoom-org.crowd-code-#1-crowd-code",0,0,"4:20:05 PM [info] Activating crowd-code\n4:20:05 PM [info] Current consent status: granted\n4:20:05 PM [info] Recording started\n4:20:05 PM [info] Consent check result: true\n",Log,tab
|
| 4 |
+
3,27752,"src/recording.ts",0,0,"",typescript,tab
|
| 5 |
+
4,28122,"src/recording.ts",11619,0,"",typescript,selection_keyboard
|
| 6 |
+
5,28305,"src/recording.ts",11620,0,"",typescript,selection_command
|
| 7 |
+
6,28409,"src/recording.ts",11620,0,"n",typescript,content
|
| 8 |
+
7,28409,"src/recording.ts",11621,0,"",typescript,selection_keyboard
|
| 9 |
+
8,29149,"src/recording.ts",11620,0,"",typescript,selection_command
|
| 10 |
+
9,29316,"src/recording.ts",11620,1,"",typescript,content
|
| 11 |
+
10,31043,"src/recording.ts",11620,0,"n",typescript,content
|
| 12 |
+
11,31049,"src/recording.ts",11620,0,"",typescript,selection_command
|
| 13 |
+
12,31606,"src/recording.ts",11620,1,"",typescript,content
|
| 14 |
+
13,32118,"src/recording.ts",11622,0,"",typescript,selection_command
|
b9a9ca28a4e05f1e6a074517e785841a391f641bfaa2a4e99d0c2e7b0c0d4aee/crowd-code-7d484c97-88c7-4cbf-92c0-58d360b2bb981750548003842-2025_06_21-17.50.25.940/source.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
b9a9ca28a4e05f1e6a074517e785841a391f641bfaa2a4e99d0c2e7b0c0d4aee/crowd-code-ff061eab-5d60-4321-8e13-dca42a7f7d631762170489148-2025_11_03-12.58.24.104/source.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Sequence,Time,File,RangeOffset,RangeLength,Text,Language,Type
|
| 2 |
+
2,104,"extension-output-pdoom-org.crowd-code-#3-crowd-code",0,0,"12:58:24 PM [info] Activating crowd-code\n12:58:24 PM [info] Recording started\n12:58:24 PM [info] Initializing git provider using file system watchers...\n12:58:24 PM [info] No workspace folder found\n",Log,tab
|
| 3 |
+
3,2015,"extension-output-pdoom-org.crowd-code-#3-crowd-code",198,0,"12:58:26 PM [info] Retrying git provider initialization...\n12:58:26 PM [info] No workspace folder found\n",Log,content
|