mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 11:01:37 -05:00
revert the language clent channel change (#21872)
This commit is contained in:
@@ -196,6 +196,28 @@ function getClientOptions(context: AppContext): ClientOptions {
|
||||
ExecutionPlanServiceFeature,
|
||||
TdeMigrationService.asFeature(context),
|
||||
],
|
||||
outputChannel: outputChannel
|
||||
outputChannel: new CustomOutputChannel()
|
||||
};
|
||||
}
|
||||
|
||||
class CustomOutputChannel implements vscode.OutputChannel {
|
||||
name: string;
|
||||
append(value: string): void {
|
||||
console.log(value);
|
||||
}
|
||||
appendLine(value: string): void {
|
||||
console.log(value);
|
||||
}
|
||||
clear(): void {
|
||||
}
|
||||
show(preserveFocus?: boolean): void;
|
||||
show(column?: vscode.ViewColumn, preserveFocus?: boolean): void;
|
||||
show(column?: any, preserveFocus?: any) {
|
||||
}
|
||||
hide(): void {
|
||||
}
|
||||
dispose(): void {
|
||||
}
|
||||
replace(_value: string): void {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user