Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add instrumentation support to the typescript code #12991

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2c3dcd4
add instrumentation support to the typescript code
fearthecowboy Nov 22, 2024
8db9949
fix linter
fearthecowboy Nov 22, 2024
ad614bf
missed file
fearthecowboy Nov 25, 2024
1b3c84e
update to a newer image?
fearthecowboy Nov 25, 2024
73abb77
Merge branch 'main' into dev/garretts/instrumentation
fearthecowboy Nov 25, 2024
47f172e
merged from main
fearthecowboy Dec 3, 2024
8c6e727
merged
fearthecowboy Dec 3, 2024
ad53e59
Merge branch 'dev/garretts/instrumentation' of https://github.com/mic…
fearthecowboy Dec 3, 2024
53dd899
work around webpack
fearthecowboy Jan 3, 2025
c5d8af4
webpack! Arg!
fearthecowboy Jan 3, 2025
35172cb
Merge branch 'main' of https://github.com/microsoft/vscode-cpptools i…
fearthecowboy Jan 14, 2025
fbb07e6
cleanup
fearthecowboy Jan 15, 2025
d272d97
cleanups
fearthecowboy Jan 15, 2025
9a22dc2
remove spaces
fearthecowboy Jan 15, 2025
b147b2b
must use eval to work around webpack
fearthecowboy Jan 15, 2025
86c26c1
Merge branch 'main' of https://github.com/microsoft/vscode-cpptools i…
fearthecowboy Jan 17, 2025
2b87424
need vscode in here
fearthecowboy Feb 6, 2025
9270034
Merge branch 'main' of https://github.com/microsoft/vscode-cpptools i…
fearthecowboy Feb 6, 2025
30044a4
Merge branch 'main' of https://github.com/microsoft/vscode-cpptools i…
fearthecowboy Feb 10, 2025
b016317
fix line endings?
fearthecowboy Feb 10, 2025
4c206b2
fix line endings?
fearthecowboy Feb 10, 2025
d71e4fb
Add comment
fearthecowboy Feb 10, 2025
9d09405
Merge branch 'main' of https://github.com/microsoft/vscode-cpptools i…
fearthecowboy Feb 12, 2025
0a2c368
Merge branch 'dev/garretts/instrumentation' of https://github.com/mic…
fearthecowboy Feb 12, 2025
fe6a369
Added instrumentation to copilothoverprovider
fearthecowboy Feb 14, 2025
249f93e
Merge branch 'main' into dev/garretts/instrumentation
fearthecowboy Feb 14, 2025
0823147
inject instrumentation code via perfecto instead
fearthecowboy Feb 15, 2025
20749be
Merge branch 'dev/garretts/instrumentation' of https://github.com/mic…
fearthecowboy Feb 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
merged
fearthecowboy committed Dec 3, 2024
commit 8c6e727601bf3ad707f341c88100f3fea6e1f1d4
2 changes: 1 addition & 1 deletion Extension/src/LanguageServer/lmTool.ts
Original file line number Diff line number Diff line change
@@ -171,7 +171,7 @@ export async function getProjectContext(uri: vscode.Uri, context: { flags: Recor
catch (exception) {
try {
const err: Error = exception as Error;
logger.getOutputChannelLogger().appendLine(localize("copilot.projectcontext.error", "Error while retrieving the project context. Reason: {0}", err.message));
getOutputChannelLogger().appendLine(localize("copilot.projectcontext.error", "Error while retrieving the project context. Reason: {0}", err.message));
}
catch {
// Intentionally swallow any exception.