mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-03 15:01:57 +01:00
Enable tracing (#274203)
* Enable tracing So that we can upload traces instead of just videos. * feedback
This commit is contained in:
committed by
GitHub
parent
144fdf16ca
commit
bc5f6481a5
@@ -143,11 +143,11 @@ export class Code {
|
||||
return !(this.quality === Quality.Stable && this.version.major === 1 && this.version.minor < 101);
|
||||
}
|
||||
|
||||
async startTracing(name: string): Promise<void> {
|
||||
async startTracing(name?: string): Promise<void> {
|
||||
return await this.driver.startTracing(name);
|
||||
}
|
||||
|
||||
async stopTracing(name: string, persist: boolean): Promise<void> {
|
||||
async stopTracing(name?: string, persist: boolean = false): Promise<void> {
|
||||
return await this.driver.stopTracing(name, persist);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user