We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9030f89 commit fbe0caaCopy full SHA for fbe0caa
src/plus/subscription/serverConnection.ts
@@ -166,7 +166,8 @@ export class ServerConnection implements Disposable {
166
}
167
168
class UriEventHandler extends EventEmitter<Uri> implements UriHandler {
169
- @log()
+ // Strip query strings from the Uri to avoid logging token, etc
170
+ @log<UriEventHandler['handleUri']>({ args: { 0: u => u.with({ query: '' }).toString(false) } })
171
public handleUri(uri: Uri) {
172
this.fire(uri);
173
0 commit comments