Skip to content

Commit

Permalink
fix indentation when logging
Browse files Browse the repository at this point in the history
  • Loading branch information
hitesh-1997 committed Nov 2, 2024
1 parent ae1e4dd commit 7f327f2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion vscode/src/autoedits/autoedits-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export class AutoeditsProvider implements vscode.InlineCompletionItemProvider, v
autoeditsLogger.logDebug(
'Autoedits',
'========================== Response:\n',
JSON.stringify(prediction),
JSON.stringify(prediction, null, 2),
'\n',
'========================== Time Taken For LLM (Msec): ',
(Date.now() - start).toString(),
Expand Down
1 change: 0 additions & 1 deletion vscode/src/autoedits/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ function getNumberOfNewLineCharsAtSuffix(text: string): number {
return match ? match[0].length : 0
}


/**
* Adjusts the prediction to enable inline completion when possible.
*
Expand Down

0 comments on commit 7f327f2

Please sign in to comment.