Remove console.log
This commit is contained in:
Родитель
618e6680b2
Коммит
c107a6f4fa
|
@ -15,10 +15,11 @@
|
|||
"rules": {
|
||||
"@typescript-eslint/no-use-before-define": "off",
|
||||
"@typescript-eslint/no-non-null-assertion": "off",
|
||||
"no-unused-vars": "off",
|
||||
"@typescript-eslint/no-unused-vars": ["error"],
|
||||
"@typescript-eslint/explicit-function-return-type": "off",
|
||||
"@typescript-eslint/no-floating-promises": "error"
|
||||
"@typescript-eslint/no-floating-promises": "error",
|
||||
"no-unused-vars": "off",
|
||||
"no-console": "warn"
|
||||
},
|
||||
"overrides": [
|
||||
{
|
||||
|
|
|
@ -336,7 +336,6 @@ export class GradleClient implements vscode.Disposable {
|
|||
try {
|
||||
const reply: CancelBuildReply | undefined = await new Promise(
|
||||
(resolve, reject) => {
|
||||
console.log('cancel build');
|
||||
this.grpcClient!.cancelBuild(
|
||||
request,
|
||||
(
|
||||
|
|
|
@ -45,7 +45,6 @@ export class GradleRunnerTerminal implements vscode.Pseudoterminal {
|
|||
|
||||
public async close(): Promise<void> {
|
||||
if (this.task && isTaskRunning(this.task)) {
|
||||
console.log('foo');
|
||||
await this.cancelCommand();
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче