We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e120bac commit dbe831cCopy full SHA for dbe831c
1 file changed
src/cloud/auth.ts
@@ -14,7 +14,6 @@ import {
14
window,
15
workspace,
16
} from "vscode"
17
-import { log } from "../utils/logger"
18
import { trackCloudSignIn } from "../utils/telemetry"
19
import { ApiService } from "./api"
20
@@ -139,14 +138,9 @@ export class CloudAuthenticationProvider
139
138
const token = await this.getToken()
140
141
if (!token || isTokenExpired(token)) {
142
- log(
143
- `getSessions: no valid token (token=${!!token}, expired=${token ? isTokenExpired(token) : "n/a"})`,
144
- )
145
return []
146
}
147
148
- log("getSessions: returning valid session")
149
-
150
if (!this.cachedLabel) {
151
const info = await ApiService.getUser(token)
152
if (info?.email) {
0 commit comments