Skip to content

Commit eb21bc0

Browse files
authored
Merge branch 'main' into bobbrow/compilerPathVerification
2 parents 3526478 + 42a9eba commit eb21bc0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Extension/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# C/C++ for Visual Studio Code Changelog
22

33
## Version 1.25.3: April 28, 2025
4-
### Enhancement
4+
### Enhancements
55
* Add a configuration warning message explaining why paths in quotes can't be found. [#11955](https://github.com/microsoft/vscode-cpptools/issues/11955)
66
* Improve the description of the `C_Cpp.copilotHover` setting. [PR #13461](https://github.com/microsoft/vscode-cpptools/pull/13461)
77

Extension/src/LanguageServer/copilotCompletionContextProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ response.uri:${copilotCompletionContext.sourceFileUri || "<not-set>"}:${copilotC
194194
return undefined;
195195
} finally {
196196
this.logger.
197-
appendLineAtLevel(7, logMessage);
197+
appendLineAtLevel(7, `[${new Date().toISOString().replace('T', ' ').replace('Z', '')}] ${logMessage}`);
198198
telemetry.send("cache");
199199
}
200200
}
@@ -414,7 +414,7 @@ response.uri:${copilotCompletionContext.sourceFileUri || "<not-set>"}:${copilotC
414414
telemetry.addResolvedElapsed(duration);
415415
telemetry.addCacheSize(this.completionContextCache.size);
416416
telemetry.send();
417-
this.logger.appendLineAtLevel(7, logMessage);
417+
this.logger.appendLineAtLevel(7, `[${new Date().toISOString().replace('T', ' ').replace('Z', '')}] ${logMessage}`);
418418
}
419419
}
420420

0 commit comments

Comments
 (0)